加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

SQLite

发布时间:2020-12-12 23:41:14 所属栏目:百科 来源:网络整理
导读:介绍 SQLite是非常小的一个嵌入式数据库,如果使用Java的JDBC来访问的话,只需要把sqlite-jdbc加入到classpath中即可,无需安装。 下载地址 http://www.sqlite.org/download.html 常用命令 .read demo.sqlselect name from sqlite_master where type = 'tabl
 
  • 介绍

SQLite是非常小的一个嵌入式数据库,如果使用Java的JDBC来访问的话,只需要把sqlite-jdbc加入到classpath中即可,无需安装。 下载地址 http://www.sqlite.org/download.html
  • 常用命令

.read demo.sql select name from sqlite_master where type = 'table';
  • Maven依赖

[codesyntax lang="xml"]
<dependency>
	<groupId>org.xerial</groupId>
	<artifactId>sqlite-jdbc</artifactId>
	<version>3.16.1</version>
</dependency>
[/codesyntax]

查看原文:http://surenpi.com/2017/02/15/sqlite/

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读