說明:
本文改上一篇:SQLite DELETE TABLE Using Java
,改為使用PreparedStatement。
一、建立 DELETE TABLE SQL
public static String getUpdateSql() {
return "DELETE from CUSTOMER where CUS_ID=?;";
}
二、程式
package com.sqlite.jdbc;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public class DeleteTableSQLiteJDBC2 {
public static String getUpdateSql() {
return "DELETE from CUSTOMER where CUS_ID=?;";
}
public static void main(String args[]) {
Connection c = null;
PreparedStatement ps = null;
try {
Class.forName("org.sqlite.JDBC");
c = DriverManager.getConnection("jdbc:sqlite:data/test.db");
c.setAutoCommit(false);
ps = c.prepareStatement(getUpdateSql());
ps.setInt(1,2);
ps.executeUpdate();
c.commit();
System.out.println("DELETE Table successfully.");
} catch (Exception e) {
System.err.println(e.getClass().getName() + ": " + e.getMessage());
} finally {
try {
if (null != ps) {
ps.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (null != c) {
c.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
System.exit(0);
}
}
三、建立測試專案
參考:Java Using SQLite
四、執行程式
參考:SQLite Manager For Firefox
圖1 修改前
圖2 執行程式
圖3 修改後
五、相關文章
Java Using SQLite
SQLite CREATE TABLE Using Java
SQLite INSERT TABLE Using Java
SQLite SELECT TABLE Using Java
SQLite UPDATE TABLE Using Java
SQLite DELETE TABLE Using Java
其它文章
- 首頁
- JAVA教學目錄
- JSP教學目錄
- Apache教學目錄
- Google App Engine教學目錄
- JBoss教學目錄
- Android教學目錄
- Grails教學目錄
- SSH教學目錄
- Window教學目錄
- Linux教學目錄
- PHP教學目錄
- C教學/C++教學目錄
- jQuery教學目錄
- HTML5教學/CSS3教學目錄
- JavaScript教學目錄
- MySQL教學目錄
- Oracle教學目錄
- SQL Server教學/PostgreSQL教學/其它資料庫教學目錄
- Eclipse教學及開發相關工具教學目錄
- 程式開發基本資訊目錄
- 其它技術教學目錄
文章標籤
全站熱搜
留言列表