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