首页 > 代码库 > sqlite数据库在java中的使用
sqlite数据库在java中的使用
/** * */package com.nyist.sqlitedemo;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;/** * @author yuchao * * @school 南阳理工软件学院移动设备应用与开发 * * @date 2014年6月19日 下午9:20:48 */public class SQLiteDemo { public static void main(String[] args) throws ClassNotFoundException, SQLException { Class.forName("org.sqlite.JDBC"); Connection connection =DriverManager.getConnection("jdbc:sqlite:db/test.db"); Statement statement=connection.createStatement(); statement.executeUpdate("Drop Table if exists person"); statement.executeUpdate("create table person(id int,name string)"); statement.executeUpdate("insert into person values(1,‘yuchao1‘)"); statement.executeUpdate("insert into person values(2,‘yuchao2‘)"); statement.executeUpdate("insert into person values(3,‘yuchao3‘)"); ResultSet rs =statement.executeQuery("select * from person"); while(rs.next()){ System.out.println("id=>"+rs.getInt("id")+",name=>"+rs.getString("name")); } statement.close(); connection.close(); }}
运行结果:
id=>1,name=>yuchao1id=>2,name=>yuchao2id=>3,name=>yuchao3
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。