什么是SQLite3

[1]

 

SQLITE是一款非常小巧的嵌入式开源数据库软件

-------------------------------------------------------------------------------------

SQLite is a software library that implements a self-contained , serverless ,

zero-configuration , transactional SQL database engine.

SQLite is the most widely deployed SQL database engine in the world.

The source code for SQLite is in the public domain .

-------------------------------------------------------------------------------------

 

[2]

特点如下:

 

1 支援大多数的SQL指令
2 一个档案就是一个数据库。不需要安装数据库服务器软件。

   sqlite 不需要任何数据库引擎

3 完整的Unicode支援(因此没有跨语系的问题)。
4 速度很快。

 

[3]

SQLITE的安装

tar xzvf sqlite-3.3.8.tar.gz
cd sqlite-3.3.8
./configure --disable-tcl --prefix=/usr/local/sqlite3
make
make install
make doc
cp /usr/local/sqlite3/include /usr/include
cp /usr/local/sqlite3/lib/lib* /usr/lib/
cp /usr/local/sqlite3/bin/sqlite3 /bin/

 

你可能感兴趣的:(sql,sqlite,嵌入式,Tcl)