Java DatabaseMetaData .supports Schemas In Index Definitions ()
Syntax
DatabaseMetaData.supportsSchemasInIndexDefinitions() has the following syntax.
boolean supportsSchemasInIndexDefinitions() throws SQLException
Example
In the following code shows how to use DatabaseMetaData.supportsSchemasInIndexDefinitions() method.
// w w w .j av a 2 s .co m
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
public class Main {
public static void main(String[] args) throws Exception {
Connection conn = getHSQLConnection();
DatabaseMetaData md = conn.getMetaData();
System.out.println("supportsSchemasInIndexDefinitions - "+ md.supportsSchemasInIndexDefinitions());
conn.close();
}
private static Connection getHSQLConnection() throws Exception {
Class.forName("org.hsqldb.jdbcDriver");
String url = "jdbc:hsqldb:data/tutorial";
return DriverManager.getConnection(url, "sa", "");
}
}