Develop and Download Open Source Software

Browse Subversion Repository

Diff of /jdbcdebugger/trunk/src/jp/co/powerbeans/jdbcdebug/sql/DatabaseMetaData.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 33 by amsoft, Tue Feb 20 06:21:04 2007 UTC revision 34 by amsoft, Fri Feb 4 08:45:40 2011 UTC
# Line 2  package jp.co.powerbeans.jdbcdebug.sql; Line 2  package jp.co.powerbeans.jdbcdebug.sql;
2    
3  import java.sql.Connection;  import java.sql.Connection;
4  import java.sql.ResultSet;  import java.sql.ResultSet;
5    import java.sql.RowIdLifetime;
6  import java.sql.SQLException;  import java.sql.SQLException;
7    
8  /**  /**
# Line 1187  public class DatabaseMetaData implements Line 1188  public class DatabaseMetaData implements
1188                  return this.dm.usesLocalFiles();                  return this.dm.usesLocalFiles();
1189          }          }
1190    
1191            /**
1192             * @return
1193             * @throws SQLException
1194             * @see java.sql.DatabaseMetaData#autoCommitFailureClosesAllResultSets()
1195             */
1196            public boolean autoCommitFailureClosesAllResultSets() throws SQLException {
1197                    return dm.autoCommitFailureClosesAllResultSets();
1198            }
1199    
1200            /**
1201             * @return
1202             * @throws SQLException
1203             * @see java.sql.DatabaseMetaData#getClientInfoProperties()
1204             */
1205            public ResultSet getClientInfoProperties() throws SQLException {
1206                    return dm.getClientInfoProperties();
1207            }
1208    
1209            /**
1210             * @param catalog
1211             * @param schemaPattern
1212             * @param functionNamePattern
1213             * @param columnNamePattern
1214             * @return
1215             * @throws SQLException
1216             * @see java.sql.DatabaseMetaData#getFunctionColumns(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
1217             */
1218            public ResultSet getFunctionColumns(String catalog, String schemaPattern,
1219                            String functionNamePattern, String columnNamePattern)
1220                            throws SQLException {
1221                    return dm.getFunctionColumns(catalog, schemaPattern,
1222                                    functionNamePattern, columnNamePattern);
1223            }
1224    
1225            /**
1226             * @param catalog
1227             * @param schemaPattern
1228             * @param functionNamePattern
1229             * @return
1230             * @throws SQLException
1231             * @see java.sql.DatabaseMetaData#getFunctions(java.lang.String, java.lang.String, java.lang.String)
1232             */
1233            public ResultSet getFunctions(String catalog, String schemaPattern,
1234                            String functionNamePattern) throws SQLException {
1235                    return dm.getFunctions(catalog, schemaPattern, functionNamePattern);
1236            }
1237    
1238            /**
1239             * @return
1240             * @throws SQLException
1241             * @see java.sql.DatabaseMetaData#getRowIdLifetime()
1242             */
1243            public RowIdLifetime getRowIdLifetime() throws SQLException {
1244                    return dm.getRowIdLifetime();
1245            }
1246    
1247            /**
1248             * @param catalog
1249             * @param schemaPattern
1250             * @return
1251             * @throws SQLException
1252             * @see java.sql.DatabaseMetaData#getSchemas(java.lang.String, java.lang.String)
1253             */
1254            public ResultSet getSchemas(String catalog, String schemaPattern)
1255                            throws SQLException {
1256                    return dm.getSchemas(catalog, schemaPattern);
1257            }
1258    
1259            /**
1260             * @param iface
1261             * @return
1262             * @throws SQLException
1263             * @see java.sql.Wrapper#isWrapperFor(java.lang.Class)
1264             */
1265            public boolean isWrapperFor(Class<?> iface) throws SQLException {
1266                    return dm.isWrapperFor(iface);
1267            }
1268    
1269            /**
1270             * @return
1271             * @throws SQLException
1272             * @see java.sql.DatabaseMetaData#supportsStoredFunctionsUsingCallSyntax()
1273             */
1274            public boolean supportsStoredFunctionsUsingCallSyntax() throws SQLException {
1275                    return dm.supportsStoredFunctionsUsingCallSyntax();
1276            }
1277    
1278            /**
1279             * @param <T>
1280             * @param iface
1281             * @return
1282             * @throws SQLException
1283             * @see java.sql.Wrapper#unwrap(java.lang.Class)
1284             */
1285            public <T> T unwrap(Class<T> iface) throws SQLException {
1286                    return dm.unwrap(iface);
1287            }
1288    
1289  }  }

Legend:
Removed from v.33  
changed lines
  Added in v.34

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26