Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SAP Sybase SQL Anywhere 16.0 » UltraLite - Java Programming » UltraLiteJ application development » Quick start guide to schema operations and data management

 

Schema operations

Perform schema operations by following these general tasks:

  1. Construct a SQL statement in a String variable.

  2. Create a PreparedStatement object by passing the String variable to the Connection.prepareStatement method.

  3. Call the PreparedStatement.execute method to perform the operation on the database.

  4. Close the PreparedStatement object to free resources.

 Example
 See also