java sqlite 操作

java sqlite 库

https://static.runoob.com/download/sqlite-jdbc-3.7.2.jar

java 复制代码
import org.springframework.jdbc.datasource.DriverManagerDataSource;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class Sample
{
    public static void main(String[] args)
    {
        Connection connection = null;
        try
        {
            // create a database connection
            Class.forName("org.sqlite.JDBC");  //重点
            connection = DriverManager.getConnection("jdbc:sqlite:sample.db");
            Statement statement = connection.createStatement();
            statement.setQueryTimeout(30);  // 设置超时为30秒

            statement.executeUpdate("drop table if exists person");  //创建数据库
            statement.executeUpdate("create table person (id integer, name string)");  //创建表
            statement.executeUpdate("insert into person values(1, 'leo')");  //添加
            statement.executeUpdate("insert into person values(2, 'yui')");  //添加
            ResultSet rs = statement.executeQuery("select * from person");
            while(rs.next())
            {
                // read the result set
                System.out.println("name = " + rs.getString("name"));
                System.out.println("id = " + rs.getInt("id"));
            }
        }
        catch(Exception e)
        {
            // if the error message is "out of memory",
            // it probably means no database file is found
            System.err.println(e.toString());
        }
        finally
        {
            try
            {
                if(connection != null)
                    connection.close();
            }
            catch(SQLException e)
            {
                // connection close failed.
                System.err.println(e);
            }
        }
    }
}
相关推荐
HTouying27 分钟前
线程池【工具类】
java
深盾科技33 分钟前
融合C++与Python:兼顾开发效率与运行性能
java·c++·python
csbysj202033 分钟前
jQuery Mobile 触摸事件
开发语言
代码村新手33 分钟前
C++-入门
开发语言·c++
我待_JAVA_如初恋33 分钟前
idea创建MavenJavaWeb项目以后,包结构缺java
java·ide·intellij-idea
来深圳40 分钟前
leetcode 739. 每日温度
java·算法·leetcode
神舟之光43 分钟前
VSCode编译运行C/C++程序问题及解决方法
开发语言·c++
CC大煊43 分钟前
【java】Druid数据库连接池完整配置指南:从入门到生产环境优化
java·数据库·springboot
坐怀不乱杯魂1 小时前
C++ STL unordered_map/set 实现
开发语言·c++
csbysj20201 小时前
jEasyUI 条件设置行背景颜色
开发语言