Java DatabaseMetaData .getSystemFunctions ()

Syntax

DatabaseMetaData.getSystemFunctions() has the following syntax.

String getSystemFunctions()    throws SQLException

Example

In the following code shows how to use DatabaseMetaData.getSystemFunctions() method.


import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
//from w  w  w  . j  av  a 2  s  .  co m
public class Main {

  public static void main(String[] args) throws Exception {
    Connection conn = getHSQLConnection();

    DatabaseMetaData md = conn.getMetaData();
    // Get the list of system functions
    System.out.println(md.getSystemFunctions()); 

    conn.close();
  }

  private static Connection getHSQLConnection() throws Exception {
    Class.forName("org.hsqldb.jdbcDriver");
    String url = "jdbc:hsqldb:data/tutorial";
    return DriverManager.getConnection(url, "sa", "");
  }

}




















Home »
  Java Tutorial »
    java.sql »




DatabaseMetaData
ParameterMetaData
PreparedStatement
ResultSet
Timestamp