Ubuntu Linux下使用SQLITE JDBC
在Ubuntu下可以用新立得去安装SQLITE,当然也可以自己去下载编译,我没有弄,怕弄乱系统。SQLite 是 D. Richard Hipp 用 C 语言编
在Ubuntu下可以用新立得去安装SQLITE,当然也可以自己去下载编译,,我没有弄,怕弄乱系统。
SQLite 是 D. Richard Hipp 用 C 语言编写的开源嵌入式数据库引擎。SQLite第一个Alpha版本诞生于2000年5月. 至今已经有7个年头了.目前版本是 2007.6.18?出来没久的?SQLite 3.4.0
其创建者保守地估计 SQLite 可以处理每天负担多达 100,00 次点击率的 Web 站点,并且 SQLite 有时候可以处理 10 倍于上述数字的负载。
下面是访问SQLite官方网站: 时第一眼看到关于SQLite的特性.
1. ACID事务 - 甚至是系统宕机或者断电后都能保持数据的一致完整性
2. 零配置 – 无需安装和管理配置
3. 实现了大部分的 SQL92 标准 (尚未实现的特性)
4. 储存在单一磁盘文件中的一个完整的数据库
5. 数据库文件可以在不同字节顺序的机器间自由的共享
6. 支持数据库大小至2TB
7. 足够小, 大致3万行C代码, 250K?
8. 比一些流行的数据库在大部分普通数据库操作要快
9. 简单, 轻松的API
10. 包含TCL绑定, 同时通过Wrapper支持其他语言的绑定
11. 良好注释的源代码, 并且有着98%以上的测试覆盖率
12. 独立: 没有额外依赖
13. Source完全的Open, 你可以用于任何用途
14. 支持多种开发语言,C, PHP, Perl, Java, ASP.NET,Python
有一点值得一提,SQLITE 居然不规定类型,好像是“弱类型的数据库”,比如create table (name,age,address),后面的insert随便来了。
不扯远了,首先先去下载sqlitejdbc.jar和libsqlitejdbc.so。sqlitejdbc的处理和你的mysql阿,Oracle阿,他们的jdbc一样处理,然后把libsqlitejdbc.so放到你的java安装地方的jre的lib下的i386下。这就ok了。
然后就是写你的jdbc程序了
Class.forName("org.sqlite.JDBC");
conn = DriverManager.getConnection("jdbc:sqlite://home/zalpirin/mydb.db");//注意这里要完整的你的db文件放的路径。
Statement stat = conn.createStatement();
ResultSet rs = stat.executeQuery("select * from 表名");
//然后爱干什么干什么
结束。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to create a user login system using PHP and SQLite In today's Internet era, a user login system is one of the basic functions of many websites and applications. This article will introduce how to create a simple and powerful user login system using PHP and SQLite. SQLite is an embedded database engine. It is a zero-configuration, server-side database engine. PHP is a popular server-side scripting language that can be used in conjunction with SQLite to create a flexible and efficient user login system. by

Implementing user permissions and access control using PHP and SQLite In modern web applications, user permissions and access control are a very important part. With proper permissions management, you can ensure that only authorized users can access specific pages and functions. In this article, we will learn how to implement basic user permissions and access control using PHP and SQLite. First, we need to create a SQLite database to store information about users and their permissions. The following is the structure of a simple user table and permission table

PHP and SQLite: How to Compress and Encrypt Data In many web applications, data security and storage space utilization are very important considerations. PHP and SQLite are two very widely used tools, and this article will introduce how to use them for data compression and encryption. SQLite is a lightweight embedded database engine that does not have a separate server process but interacts directly with applications. PHP is a popular server-side scripting language that is widely used to build dynamic

With the development of the Internet, blogs have become a platform for more and more people to share their lives, knowledge and ideas. If you also want to create a blog of your own, then this article will introduce how to use PHP and SQLite to create a simple blog. Determine the needs Before starting to create a blog, we need to determine the functions we want to achieve. For example: Create a blog post Edit a blog post Delete a blog post Display a list of blog posts Display blog post details User authentication and permission control Install PHP and SQLite We need to install PHP and S

Using PHP and SQLite to implement data charts and visualization overview: With the advent of the big data era, data charts and visualizations have become an important way to display and analyze data. In this article, we will introduce how to use PHP and SQLite to implement data charts and visualization functions. Take an example as an example to show how to read data from a SQLite database and use a common data chart library to display the data. Preparation: First, you need to ensure that PHP and SQLite databases have been installed. If it is not installed, you can

How to Import and Export Data Using PHP and SQLite Importing and exporting data is one of the common tasks while developing a website or application. Using PHP and SQLite, we can easily import data from external files into SQLite database and export data from database to external files. This article will introduce how to use PHP and SQLite to import and export data, and provide corresponding code examples. Data import First, we need to prepare an external file containing the data to be imported. this file

PHP and SQLite: How to deal with long connections and disconnection and reconnection Introduction: In web development, PHP and SQLite are two commonly used technologies. However, long connections and disconnection and reconnection are some of the problems often encountered when using PHP and SQLite. This article will introduce how to handle the problems of long connections and disconnection and reconnection in PHP, and provide some example codes to help developers better understand and solve these problems. 1. Persistent connection problem When using PHP to connect to SQLite database, long connection (Persis

How to use PHP and SQLite for full-text search and indexing strategies Introduction: In modern application development, full-text search capabilities are indispensable in many fields. Whether on blogs, news websites, or e-commerce platforms, users are accustomed to using keywords to search. Therefore, to improve user experience and provide better search results, we need to provide full-text search capabilities using appropriate search and indexing strategies. In this article, we will explore how to use PHP and SQLite databases to implement full-text search and
