Java DatabaseMetaData .getSQLKeywords ()
Syntax
DatabaseMetaData.getSQLKeywords() has the following syntax.
String getSQLKeywords() throws SQLException
Example
In the following code shows how to use DatabaseMetaData.getSQLKeywords() method.
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
// w ww . java2 s .c o m
public class Main {
public static void main(String[] args) throws Exception {
Connection conn = getHSQLConnection();
DatabaseMetaData meta = conn.getMetaData();
String sqlKeywords = meta.getSQLKeywords();
System.out.println("sqlKeywords:"+sqlKeywords);
conn.close();
}
private static Connection getHSQLConnection() throws Exception {
Class.forName("org.hsqldb.jdbcDriver");
String url = "jdbc:hsqldb:data/tutorial";
return DriverManager.getConnection(url, "sa", "");
}
}