找回密码
 立即注册
查看: 11|回复: 0

Java操作Sqlite数据库-jdbc连接

[复制链接]

30

主题

2

回帖

164

积分

管理员

积分
164
发表于 2025-3-24 09:01:58 | 显示全部楼层 |阅读模式
Java操作Sqlite数据库步骤:
1. 导入Sqlite jdbc
本文使用sqlite-jdbc-3.7.2.jar,下载地址 http://pan.baidu.com/s/1kVHAGdD
2. 编写jdbc连接代码
  1. public class OpSqliteDB {
  2.    
  3.     private static final String Class_Name = "org.sqlite.JDBC";
  4.     private static final String DB_URL = "jdbc:sqlite:F:\\xxxdatabase.db";

  5.     public static void main(String args[]) {
  6.         // load the sqlite-JDBC driver using the current class loader
  7.         Connection connection = null;
  8.         try {
  9.             connection = createConnection();
  10.             func1(connection);
  11.             System.out.println("Success!");
  12.         }  catch (SQLException e) {
  13.             System.err.println(e.getMessage());
  14.         } catch(Exception e) {
  15.             e.printStackTrace();
  16.         } finally{
  17.             try {
  18.                 if (connection != null)
  19.                     connection.close();
  20.             } catch (SQLException e) {
  21.                 // connection close failed.
  22.                 System.err.println(e);
  23.             }
  24.         }
  25.     }
  26.    
  27.     // 创建Sqlite数据库连接
  28.     public static Connection createConnection() throws SQLException, ClassNotFoundException {
  29.         Class.forName(Class_Name);
  30.         return DriverManager.getConnection(DB_URL);
  31.     }

  32.     public static void func1(Connection connection) throws SQLException {
  33.         Statement statement = connection.createStatement();
  34.         Statement statement1 = connection.createStatement();
  35.         statement.setQueryTimeout(30); // set timeout to 30 sec.
  36.         // 执行查询语句
  37.         ResultSet rs = statement.executeQuery("select * from table_name1");
  38.         while (rs.next()) {
  39.             String col1 = rs.getString("col1_name");
  40.             String col2 = rs.getString("col2_name");
  41.             System.out.println("col1 = " + col1 + "  col2 = " + col2);
  42.             
  43.             System.out.println(location);
  44.             // 执行插入语句操作
  45.             statement1.executeUpdate("insert into table_name2(col2) values('" + col2_value + "')");
  46.             // 执行更新语句
  47.             statement1.executeUpdate("update table_name2 set 字段名1=" +  字段值1 + " where 字段名2='" +  字段值2 + "'");
  48.         }
  49.     }
复制代码



您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|软件开发编程门户 ( 陇ICP备2024013992号-1|甘公网安备62090002000130号 )

GMT+8, 2025-4-3 21:06 , Processed in 0.045609 second(s), 21 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表