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 编程 » UltraLiteJ 应用程序开发 » 模式操作与数据管理快速入门指南

 

模式操作

通过以下这些常规任务来执行模式操作:

  1. 在字符串变量中构造一个 SQL 语句。

  2. 通过将字符串变量传递给 Connection.prepareStatement 方法,创建一个 PreparedStatement 对象。

  3. 调用 PreparedStatement.execute 方法以在数据库上执行操作。

  4. 关闭 PreparedStatement 对象以释放资源。

 示例
 另请参见