Refactor tabular output for eventual re-use printing table metadata.
[squelch.git] / src / test / java / net / jaekl / squelch / sql / DatabaseMetaDataMock.java
1 package net.jaekl.squelch.sql;
2
3 import java.sql.Connection;
4 import java.sql.DatabaseMetaData;
5 import java.sql.ResultSet;
6 import java.sql.RowIdLifetime;
7 import java.sql.SQLException;
8
9
10 public class DatabaseMetaDataMock implements DatabaseMetaData {
11
12         @Override
13         public boolean isWrapperFor(Class<?> iface) throws SQLException {
14                 // TODO Auto-generated method stub
15                 return false;
16         }
17
18         @Override
19         public <T> T unwrap(Class<T> iface) throws SQLException {
20                 // TODO Auto-generated method stub
21                 return null;
22         }
23
24         @Override
25         public boolean allProceduresAreCallable() throws SQLException {
26                 // TODO Auto-generated method stub
27                 return false;
28         }
29
30         @Override
31         public boolean allTablesAreSelectable() throws SQLException {
32                 // TODO Auto-generated method stub
33                 return false;
34         }
35
36         @Override
37         public boolean autoCommitFailureClosesAllResultSets() throws SQLException {
38                 // TODO Auto-generated method stub
39                 return false;
40         }
41
42         @Override
43         public boolean dataDefinitionCausesTransactionCommit() throws SQLException {
44                 // TODO Auto-generated method stub
45                 return false;
46         }
47
48         @Override
49         public boolean dataDefinitionIgnoredInTransactions() throws SQLException {
50                 // TODO Auto-generated method stub
51                 return false;
52         }
53
54         @Override
55         public boolean deletesAreDetected(int type) throws SQLException {
56                 // TODO Auto-generated method stub
57                 return false;
58         }
59
60         @Override
61         public boolean doesMaxRowSizeIncludeBlobs() throws SQLException {
62                 // TODO Auto-generated method stub
63                 return false;
64         }
65
66         @Override
67         public boolean generatedKeyAlwaysReturned() throws SQLException {
68                 // TODO Auto-generated method stub
69                 return false;
70         }
71
72         @Override
73         public ResultSet getAttributes(String catalog, String schemaPattern,
74                         String typeNamePattern, String attributeNamePattern)
75                         throws SQLException {
76                 // TODO Auto-generated method stub
77                 return null;
78         }
79
80         @Override
81         public ResultSet getBestRowIdentifier(String catalog, String schema,
82                         String table, int scope, boolean nullable) throws SQLException {
83                 // TODO Auto-generated method stub
84                 return null;
85         }
86
87         @Override
88         public String getCatalogSeparator() throws SQLException {
89                 // TODO Auto-generated method stub
90                 return null;
91         }
92
93         @Override
94         public String getCatalogTerm() throws SQLException {
95                 // TODO Auto-generated method stub
96                 return null;
97         }
98
99         @Override
100         public ResultSet getCatalogs() throws SQLException {
101                 // TODO Auto-generated method stub
102                 return null;
103         }
104
105         @Override
106         public ResultSet getClientInfoProperties() throws SQLException {
107                 // TODO Auto-generated method stub
108                 return null;
109         }
110
111         @Override
112         public ResultSet getColumnPrivileges(String catalog, String schema,
113                         String table, String columnNamePattern) throws SQLException {
114                 // TODO Auto-generated method stub
115                 return null;
116         }
117
118         @Override
119         public ResultSet getColumns(String catalog, String schemaPattern,
120                         String tableNamePattern, String columnNamePattern)
121                         throws SQLException {
122                 // TODO Auto-generated method stub
123                 return null;
124         }
125
126         @Override
127         public Connection getConnection() throws SQLException {
128                 // TODO Auto-generated method stub
129                 return null;
130         }
131
132         @Override
133         public ResultSet getCrossReference(String parentCatalog,
134                         String parentSchema, String parentTable, String foreignCatalog,
135                         String foreignSchema, String foreignTable) throws SQLException {
136                 // TODO Auto-generated method stub
137                 return null;
138         }
139
140         @Override
141         public int getDatabaseMajorVersion() throws SQLException {
142                 // TODO Auto-generated method stub
143                 return 0;
144         }
145
146         @Override
147         public int getDatabaseMinorVersion() throws SQLException {
148                 // TODO Auto-generated method stub
149                 return 0;
150         }
151
152         @Override
153         public String getDatabaseProductName() throws SQLException {
154                 // TODO Auto-generated method stub
155                 return null;
156         }
157
158         @Override
159         public String getDatabaseProductVersion() throws SQLException {
160                 // TODO Auto-generated method stub
161                 return null;
162         }
163
164         @Override
165         public int getDefaultTransactionIsolation() throws SQLException {
166                 // TODO Auto-generated method stub
167                 return 0;
168         }
169
170         @Override
171         public int getDriverMajorVersion() {
172                 // TODO Auto-generated method stub
173                 return 0;
174         }
175
176         @Override
177         public int getDriverMinorVersion() {
178                 // TODO Auto-generated method stub
179                 return 0;
180         }
181
182         @Override
183         public String getDriverName() throws SQLException {
184                 // TODO Auto-generated method stub
185                 return null;
186         }
187
188         @Override
189         public String getDriverVersion() throws SQLException {
190                 // TODO Auto-generated method stub
191                 return null;
192         }
193
194         @Override
195         public ResultSet getExportedKeys(String catalog, String schema, String table)
196                         throws SQLException {
197                 // TODO Auto-generated method stub
198                 return null;
199         }
200
201         @Override
202         public String getExtraNameCharacters() throws SQLException {
203                 // TODO Auto-generated method stub
204                 return null;
205         }
206
207         @Override
208         public ResultSet getFunctionColumns(String catalog, String schemaPattern,
209                         String functionNamePattern, String columnNamePattern)
210                         throws SQLException {
211                 // TODO Auto-generated method stub
212                 return null;
213         }
214
215         @Override
216         public ResultSet getFunctions(String catalog, String schemaPattern,
217                         String functionNamePattern) throws SQLException {
218                 // TODO Auto-generated method stub
219                 return null;
220         }
221
222         @Override
223         public String getIdentifierQuoteString() throws SQLException {
224                 // TODO Auto-generated method stub
225                 return null;
226         }
227
228         @Override
229         public ResultSet getImportedKeys(String catalog, String schema, String table)
230                         throws SQLException {
231                 // TODO Auto-generated method stub
232                 return null;
233         }
234
235         @Override
236         public ResultSet getIndexInfo(String catalog, String schema, String table,
237                         boolean unique, boolean approximate) throws SQLException {
238                 // TODO Auto-generated method stub
239                 return null;
240         }
241
242         @Override
243         public int getJDBCMajorVersion() throws SQLException {
244                 // TODO Auto-generated method stub
245                 return 0;
246         }
247
248         @Override
249         public int getJDBCMinorVersion() throws SQLException {
250                 // TODO Auto-generated method stub
251                 return 0;
252         }
253
254         @Override
255         public int getMaxBinaryLiteralLength() throws SQLException {
256                 // TODO Auto-generated method stub
257                 return 0;
258         }
259
260         @Override
261         public int getMaxCatalogNameLength() throws SQLException {
262                 // TODO Auto-generated method stub
263                 return 0;
264         }
265
266         @Override
267         public int getMaxCharLiteralLength() throws SQLException {
268                 // TODO Auto-generated method stub
269                 return 0;
270         }
271
272         @Override
273         public int getMaxColumnNameLength() throws SQLException {
274                 // TODO Auto-generated method stub
275                 return 0;
276         }
277
278         @Override
279         public int getMaxColumnsInGroupBy() throws SQLException {
280                 // TODO Auto-generated method stub
281                 return 0;
282         }
283
284         @Override
285         public int getMaxColumnsInIndex() throws SQLException {
286                 // TODO Auto-generated method stub
287                 return 0;
288         }
289
290         @Override
291         public int getMaxColumnsInOrderBy() throws SQLException {
292                 // TODO Auto-generated method stub
293                 return 0;
294         }
295
296         @Override
297         public int getMaxColumnsInSelect() throws SQLException {
298                 // TODO Auto-generated method stub
299                 return 0;
300         }
301
302         @Override
303         public int getMaxColumnsInTable() throws SQLException {
304                 // TODO Auto-generated method stub
305                 return 0;
306         }
307
308         @Override
309         public int getMaxConnections() throws SQLException {
310                 // TODO Auto-generated method stub
311                 return 0;
312         }
313
314         @Override
315         public int getMaxCursorNameLength() throws SQLException {
316                 // TODO Auto-generated method stub
317                 return 0;
318         }
319
320         @Override
321         public int getMaxIndexLength() throws SQLException {
322                 // TODO Auto-generated method stub
323                 return 0;
324         }
325
326         @Override
327         public int getMaxProcedureNameLength() throws SQLException {
328                 // TODO Auto-generated method stub
329                 return 0;
330         }
331
332         @Override
333         public int getMaxRowSize() throws SQLException {
334                 // TODO Auto-generated method stub
335                 return 0;
336         }
337
338         @Override
339         public int getMaxSchemaNameLength() throws SQLException {
340                 // TODO Auto-generated method stub
341                 return 0;
342         }
343
344         @Override
345         public int getMaxStatementLength() throws SQLException {
346                 // TODO Auto-generated method stub
347                 return 0;
348         }
349
350         @Override
351         public int getMaxStatements() throws SQLException {
352                 // TODO Auto-generated method stub
353                 return 0;
354         }
355
356         @Override
357         public int getMaxTableNameLength() throws SQLException {
358                 // TODO Auto-generated method stub
359                 return 0;
360         }
361
362         @Override
363         public int getMaxTablesInSelect() throws SQLException {
364                 // TODO Auto-generated method stub
365                 return 0;
366         }
367
368         @Override
369         public int getMaxUserNameLength() throws SQLException {
370                 // TODO Auto-generated method stub
371                 return 0;
372         }
373
374         @Override
375         public String getNumericFunctions() throws SQLException {
376                 // TODO Auto-generated method stub
377                 return null;
378         }
379
380         @Override
381         public ResultSet getPrimaryKeys(String catalog, String schema, String table)
382                         throws SQLException {
383                 // TODO Auto-generated method stub
384                 return null;
385         }
386
387         @Override
388         public ResultSet getProcedureColumns(String catalog, String schemaPattern,
389                         String procedureNamePattern, String columnNamePattern)
390                         throws SQLException {
391                 // TODO Auto-generated method stub
392                 return null;
393         }
394
395         @Override
396         public String getProcedureTerm() throws SQLException {
397                 // TODO Auto-generated method stub
398                 return null;
399         }
400
401         @Override
402         public ResultSet getProcedures(String catalog, String schemaPattern,
403                         String procedureNamePattern) throws SQLException {
404                 // TODO Auto-generated method stub
405                 return null;
406         }
407
408         @Override
409         public ResultSet getPseudoColumns(String catalog, String schemaPattern,
410                         String tableNamePattern, String columnNamePattern)
411                         throws SQLException {
412                 // TODO Auto-generated method stub
413                 return null;
414         }
415
416         @Override
417         public int getResultSetHoldability() throws SQLException {
418                 // TODO Auto-generated method stub
419                 return 0;
420         }
421
422         @Override
423         public RowIdLifetime getRowIdLifetime() throws SQLException {
424                 // TODO Auto-generated method stub
425                 return null;
426         }
427
428         @Override
429         public String getSQLKeywords() throws SQLException {
430                 // TODO Auto-generated method stub
431                 return null;
432         }
433
434         @Override
435         public int getSQLStateType() throws SQLException {
436                 // TODO Auto-generated method stub
437                 return 0;
438         }
439
440         @Override
441         public String getSchemaTerm() throws SQLException {
442                 // TODO Auto-generated method stub
443                 return null;
444         }
445
446         @Override
447         public ResultSet getSchemas() throws SQLException {
448                 // TODO Auto-generated method stub
449                 return null;
450         }
451
452         @Override
453         public ResultSet getSchemas(String catalog, String schemaPattern)
454                         throws SQLException {
455                 // TODO Auto-generated method stub
456                 return null;
457         }
458
459         @Override
460         public String getSearchStringEscape() throws SQLException {
461                 // TODO Auto-generated method stub
462                 return null;
463         }
464
465         @Override
466         public String getStringFunctions() throws SQLException {
467                 // TODO Auto-generated method stub
468                 return null;
469         }
470
471         @Override
472         public ResultSet getSuperTables(String catalog, String schemaPattern,
473                         String tableNamePattern) throws SQLException {
474                 // TODO Auto-generated method stub
475                 return null;
476         }
477
478         @Override
479         public ResultSet getSuperTypes(String catalog, String schemaPattern,
480                         String typeNamePattern) throws SQLException {
481                 // TODO Auto-generated method stub
482                 return null;
483         }
484
485         @Override
486         public String getSystemFunctions() throws SQLException {
487                 // TODO Auto-generated method stub
488                 return null;
489         }
490
491         @Override
492         public ResultSet getTablePrivileges(String catalog, String schemaPattern,
493                         String tableNamePattern) throws SQLException {
494                 // TODO Auto-generated method stub
495                 return null;
496         }
497
498         @Override
499         public ResultSet getTableTypes() throws SQLException {
500                 // TODO Auto-generated method stub
501                 return null;
502         }
503
504         @Override
505         public ResultSet getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types) 
506                 throws SQLException 
507         {
508                 ResultSetMock result = new ResultSetMock();
509                 return result;
510         }
511
512         @Override
513         public String getTimeDateFunctions() throws SQLException {
514                 // TODO Auto-generated method stub
515                 return null;
516         }
517
518         @Override
519         public ResultSet getTypeInfo() throws SQLException {
520                 // TODO Auto-generated method stub
521                 return null;
522         }
523
524         @Override
525         public ResultSet getUDTs(String catalog, String schemaPattern,
526                         String typeNamePattern, int[] types) throws SQLException {
527                 // TODO Auto-generated method stub
528                 return null;
529         }
530
531         @Override
532         public String getURL() throws SQLException {
533                 // TODO Auto-generated method stub
534                 return null;
535         }
536
537         @Override
538         public String getUserName() throws SQLException {
539                 // TODO Auto-generated method stub
540                 return null;
541         }
542
543         @Override
544         public ResultSet getVersionColumns(String catalog, String schema,
545                         String table) throws SQLException {
546                 // TODO Auto-generated method stub
547                 return null;
548         }
549
550         @Override
551         public boolean insertsAreDetected(int type) throws SQLException {
552                 // TODO Auto-generated method stub
553                 return false;
554         }
555
556         @Override
557         public boolean isCatalogAtStart() throws SQLException {
558                 // TODO Auto-generated method stub
559                 return false;
560         }
561
562         @Override
563         public boolean isReadOnly() throws SQLException {
564                 // TODO Auto-generated method stub
565                 return false;
566         }
567
568         @Override
569         public boolean locatorsUpdateCopy() throws SQLException {
570                 // TODO Auto-generated method stub
571                 return false;
572         }
573
574         @Override
575         public boolean nullPlusNonNullIsNull() throws SQLException {
576                 // TODO Auto-generated method stub
577                 return false;
578         }
579
580         @Override
581         public boolean nullsAreSortedAtEnd() throws SQLException {
582                 // TODO Auto-generated method stub
583                 return false;
584         }
585
586         @Override
587         public boolean nullsAreSortedAtStart() throws SQLException {
588                 // TODO Auto-generated method stub
589                 return false;
590         }
591
592         @Override
593         public boolean nullsAreSortedHigh() throws SQLException {
594                 // TODO Auto-generated method stub
595                 return false;
596         }
597
598         @Override
599         public boolean nullsAreSortedLow() throws SQLException {
600                 // TODO Auto-generated method stub
601                 return false;
602         }
603
604         @Override
605         public boolean othersDeletesAreVisible(int type) throws SQLException {
606                 // TODO Auto-generated method stub
607                 return false;
608         }
609
610         @Override
611         public boolean othersInsertsAreVisible(int type) throws SQLException {
612                 // TODO Auto-generated method stub
613                 return false;
614         }
615
616         @Override
617         public boolean othersUpdatesAreVisible(int type) throws SQLException {
618                 // TODO Auto-generated method stub
619                 return false;
620         }
621
622         @Override
623         public boolean ownDeletesAreVisible(int type) throws SQLException {
624                 // TODO Auto-generated method stub
625                 return false;
626         }
627
628         @Override
629         public boolean ownInsertsAreVisible(int type) throws SQLException {
630                 // TODO Auto-generated method stub
631                 return false;
632         }
633
634         @Override
635         public boolean ownUpdatesAreVisible(int type) throws SQLException {
636                 // TODO Auto-generated method stub
637                 return false;
638         }
639
640         @Override
641         public boolean storesLowerCaseIdentifiers() throws SQLException {
642                 // TODO Auto-generated method stub
643                 return false;
644         }
645
646         @Override
647         public boolean storesLowerCaseQuotedIdentifiers() throws SQLException {
648                 // TODO Auto-generated method stub
649                 return false;
650         }
651
652         @Override
653         public boolean storesMixedCaseIdentifiers() throws SQLException {
654                 // TODO Auto-generated method stub
655                 return false;
656         }
657
658         @Override
659         public boolean storesMixedCaseQuotedIdentifiers() throws SQLException {
660                 // TODO Auto-generated method stub
661                 return false;
662         }
663
664         @Override
665         public boolean storesUpperCaseIdentifiers() throws SQLException {
666                 // TODO Auto-generated method stub
667                 return false;
668         }
669
670         @Override
671         public boolean storesUpperCaseQuotedIdentifiers() throws SQLException {
672                 // TODO Auto-generated method stub
673                 return false;
674         }
675
676         @Override
677         public boolean supportsANSI92EntryLevelSQL() throws SQLException {
678                 // TODO Auto-generated method stub
679                 return false;
680         }
681
682         @Override
683         public boolean supportsANSI92FullSQL() throws SQLException {
684                 // TODO Auto-generated method stub
685                 return false;
686         }
687
688         @Override
689         public boolean supportsANSI92IntermediateSQL() throws SQLException {
690                 // TODO Auto-generated method stub
691                 return false;
692         }
693
694         @Override
695         public boolean supportsAlterTableWithAddColumn() throws SQLException {
696                 // TODO Auto-generated method stub
697                 return false;
698         }
699
700         @Override
701         public boolean supportsAlterTableWithDropColumn() throws SQLException {
702                 // TODO Auto-generated method stub
703                 return false;
704         }
705
706         @Override
707         public boolean supportsBatchUpdates() throws SQLException {
708                 // TODO Auto-generated method stub
709                 return false;
710         }
711
712         @Override
713         public boolean supportsCatalogsInDataManipulation() throws SQLException {
714                 // TODO Auto-generated method stub
715                 return false;
716         }
717
718         @Override
719         public boolean supportsCatalogsInIndexDefinitions() throws SQLException {
720                 // TODO Auto-generated method stub
721                 return false;
722         }
723
724         @Override
725         public boolean supportsCatalogsInPrivilegeDefinitions() throws SQLException {
726                 // TODO Auto-generated method stub
727                 return false;
728         }
729
730         @Override
731         public boolean supportsCatalogsInProcedureCalls() throws SQLException {
732                 // TODO Auto-generated method stub
733                 return false;
734         }
735
736         @Override
737         public boolean supportsCatalogsInTableDefinitions() throws SQLException {
738                 // TODO Auto-generated method stub
739                 return false;
740         }
741
742         @Override
743         public boolean supportsColumnAliasing() throws SQLException {
744                 // TODO Auto-generated method stub
745                 return false;
746         }
747
748         @Override
749         public boolean supportsConvert() throws SQLException {
750                 // TODO Auto-generated method stub
751                 return false;
752         }
753
754         @Override
755         public boolean supportsConvert(int fromType, int toType)
756                         throws SQLException {
757                 // TODO Auto-generated method stub
758                 return false;
759         }
760
761         @Override
762         public boolean supportsCoreSQLGrammar() throws SQLException {
763                 // TODO Auto-generated method stub
764                 return false;
765         }
766
767         @Override
768         public boolean supportsCorrelatedSubqueries() throws SQLException {
769                 // TODO Auto-generated method stub
770                 return false;
771         }
772
773         @Override
774         public boolean supportsDataDefinitionAndDataManipulationTransactions()
775                         throws SQLException {
776                 // TODO Auto-generated method stub
777                 return false;
778         }
779
780         @Override
781         public boolean supportsDataManipulationTransactionsOnly()
782                         throws SQLException {
783                 // TODO Auto-generated method stub
784                 return false;
785         }
786
787         @Override
788         public boolean supportsDifferentTableCorrelationNames() throws SQLException {
789                 // TODO Auto-generated method stub
790                 return false;
791         }
792
793         @Override
794         public boolean supportsExpressionsInOrderBy() throws SQLException {
795                 // TODO Auto-generated method stub
796                 return false;
797         }
798
799         @Override
800         public boolean supportsExtendedSQLGrammar() throws SQLException {
801                 // TODO Auto-generated method stub
802                 return false;
803         }
804
805         @Override
806         public boolean supportsFullOuterJoins() throws SQLException {
807                 // TODO Auto-generated method stub
808                 return false;
809         }
810
811         @Override
812         public boolean supportsGetGeneratedKeys() throws SQLException {
813                 // TODO Auto-generated method stub
814                 return false;
815         }
816
817         @Override
818         public boolean supportsGroupBy() throws SQLException {
819                 // TODO Auto-generated method stub
820                 return false;
821         }
822
823         @Override
824         public boolean supportsGroupByBeyondSelect() throws SQLException {
825                 // TODO Auto-generated method stub
826                 return false;
827         }
828
829         @Override
830         public boolean supportsGroupByUnrelated() throws SQLException {
831                 // TODO Auto-generated method stub
832                 return false;
833         }
834
835         @Override
836         public boolean supportsIntegrityEnhancementFacility() throws SQLException {
837                 // TODO Auto-generated method stub
838                 return false;
839         }
840
841         @Override
842         public boolean supportsLikeEscapeClause() throws SQLException {
843                 // TODO Auto-generated method stub
844                 return false;
845         }
846
847         @Override
848         public boolean supportsLimitedOuterJoins() throws SQLException {
849                 // TODO Auto-generated method stub
850                 return false;
851         }
852
853         @Override
854         public boolean supportsMinimumSQLGrammar() throws SQLException {
855                 // TODO Auto-generated method stub
856                 return false;
857         }
858
859         @Override
860         public boolean supportsMixedCaseIdentifiers() throws SQLException {
861                 // TODO Auto-generated method stub
862                 return false;
863         }
864
865         @Override
866         public boolean supportsMixedCaseQuotedIdentifiers() throws SQLException {
867                 // TODO Auto-generated method stub
868                 return false;
869         }
870
871         @Override
872         public boolean supportsMultipleOpenResults() throws SQLException {
873                 // TODO Auto-generated method stub
874                 return false;
875         }
876
877         @Override
878         public boolean supportsMultipleResultSets() throws SQLException {
879                 // TODO Auto-generated method stub
880                 return false;
881         }
882
883         @Override
884         public boolean supportsMultipleTransactions() throws SQLException {
885                 // TODO Auto-generated method stub
886                 return false;
887         }
888
889         @Override
890         public boolean supportsNamedParameters() throws SQLException {
891                 // TODO Auto-generated method stub
892                 return false;
893         }
894
895         @Override
896         public boolean supportsNonNullableColumns() throws SQLException {
897                 // TODO Auto-generated method stub
898                 return false;
899         }
900
901         @Override
902         public boolean supportsOpenCursorsAcrossCommit() throws SQLException {
903                 // TODO Auto-generated method stub
904                 return false;
905         }
906
907         @Override
908         public boolean supportsOpenCursorsAcrossRollback() throws SQLException {
909                 // TODO Auto-generated method stub
910                 return false;
911         }
912
913         @Override
914         public boolean supportsOpenStatementsAcrossCommit() throws SQLException {
915                 // TODO Auto-generated method stub
916                 return false;
917         }
918
919         @Override
920         public boolean supportsOpenStatementsAcrossRollback() throws SQLException {
921                 // TODO Auto-generated method stub
922                 return false;
923         }
924
925         @Override
926         public boolean supportsOrderByUnrelated() throws SQLException {
927                 // TODO Auto-generated method stub
928                 return false;
929         }
930
931         @Override
932         public boolean supportsOuterJoins() throws SQLException {
933                 // TODO Auto-generated method stub
934                 return false;
935         }
936
937         @Override
938         public boolean supportsPositionedDelete() throws SQLException {
939                 // TODO Auto-generated method stub
940                 return false;
941         }
942
943         @Override
944         public boolean supportsPositionedUpdate() throws SQLException {
945                 // TODO Auto-generated method stub
946                 return false;
947         }
948
949         @Override
950         public boolean supportsResultSetConcurrency(int type, int concurrency)
951                         throws SQLException {
952                 // TODO Auto-generated method stub
953                 return false;
954         }
955
956         @Override
957         public boolean supportsResultSetHoldability(int holdability)
958                         throws SQLException {
959                 // TODO Auto-generated method stub
960                 return false;
961         }
962
963         @Override
964         public boolean supportsResultSetType(int type) throws SQLException {
965                 // TODO Auto-generated method stub
966                 return false;
967         }
968
969         @Override
970         public boolean supportsSavepoints() throws SQLException {
971                 // TODO Auto-generated method stub
972                 return false;
973         }
974
975         @Override
976         public boolean supportsSchemasInDataManipulation() throws SQLException {
977                 // TODO Auto-generated method stub
978                 return false;
979         }
980
981         @Override
982         public boolean supportsSchemasInIndexDefinitions() throws SQLException {
983                 // TODO Auto-generated method stub
984                 return false;
985         }
986
987         @Override
988         public boolean supportsSchemasInPrivilegeDefinitions() throws SQLException {
989                 // TODO Auto-generated method stub
990                 return false;
991         }
992
993         @Override
994         public boolean supportsSchemasInProcedureCalls() throws SQLException {
995                 // TODO Auto-generated method stub
996                 return false;
997         }
998
999         @Override
1000         public boolean supportsSchemasInTableDefinitions() throws SQLException {
1001                 // TODO Auto-generated method stub
1002                 return false;
1003         }
1004
1005         @Override
1006         public boolean supportsSelectForUpdate() throws SQLException {
1007                 // TODO Auto-generated method stub
1008                 return false;
1009         }
1010
1011         @Override
1012         public boolean supportsStatementPooling() throws SQLException {
1013                 // TODO Auto-generated method stub
1014                 return false;
1015         }
1016
1017         @Override
1018         public boolean supportsStoredFunctionsUsingCallSyntax() throws SQLException {
1019                 // TODO Auto-generated method stub
1020                 return false;
1021         }
1022
1023         @Override
1024         public boolean supportsStoredProcedures() throws SQLException {
1025                 // TODO Auto-generated method stub
1026                 return false;
1027         }
1028
1029         @Override
1030         public boolean supportsSubqueriesInComparisons() throws SQLException {
1031                 // TODO Auto-generated method stub
1032                 return false;
1033         }
1034
1035         @Override
1036         public boolean supportsSubqueriesInExists() throws SQLException {
1037                 // TODO Auto-generated method stub
1038                 return false;
1039         }
1040
1041         @Override
1042         public boolean supportsSubqueriesInIns() throws SQLException {
1043                 // TODO Auto-generated method stub
1044                 return false;
1045         }
1046
1047         @Override
1048         public boolean supportsSubqueriesInQuantifieds() throws SQLException {
1049                 // TODO Auto-generated method stub
1050                 return false;
1051         }
1052
1053         @Override
1054         public boolean supportsTableCorrelationNames() throws SQLException {
1055                 // TODO Auto-generated method stub
1056                 return false;
1057         }
1058
1059         @Override
1060         public boolean supportsTransactionIsolationLevel(int level)
1061                         throws SQLException {
1062                 // TODO Auto-generated method stub
1063                 return false;
1064         }
1065
1066         @Override
1067         public boolean supportsTransactions() throws SQLException {
1068                 // TODO Auto-generated method stub
1069                 return false;
1070         }
1071
1072         @Override
1073         public boolean supportsUnion() throws SQLException {
1074                 // TODO Auto-generated method stub
1075                 return false;
1076         }
1077
1078         @Override
1079         public boolean supportsUnionAll() throws SQLException {
1080                 // TODO Auto-generated method stub
1081                 return false;
1082         }
1083
1084         @Override
1085         public boolean updatesAreDetected(int type) throws SQLException {
1086                 // TODO Auto-generated method stub
1087                 return false;
1088         }
1089
1090         @Override
1091         public boolean usesLocalFilePerTable() throws SQLException {
1092                 // TODO Auto-generated method stub
1093                 return false;
1094         }
1095
1096         @Override
1097         public boolean usesLocalFiles() throws SQLException {
1098                 // TODO Auto-generated method stub
1099                 return false;
1100         }
1101
1102 }