Java DatabaseMetaData .supportsPositionedDelete ()

Syntax

DatabaseMetaData.supportsPositionedDelete() has the following syntax.

boolean supportsPositionedDelete()     throws SQLException

Example

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


//from   w  ww . j a  v a2 s .  c om
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
import java.sql.ResultSet;

public class Main {

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

    DatabaseMetaData md = conn.getMetaData();
    System.out.println("supportsPositionedDelete - "+ md.supportsPositionedDelete());


    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