Java API Tutorial - Java DatabaseMetaData .getMaxStatementLength ()








Syntax

DatabaseMetaData.getMaxStatementLength() has the following syntax.

int getMaxStatementLength()    throws SQLException

Example

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

import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
//from  w  w w.j a  v  a 2  s. com
public class Main {

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

    DatabaseMetaData md = conn.getMetaData();
    System.out.println(md.getMaxStatementLength());
    conn.close();
  }

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

}