SQLite database installation and basic operation guide, sqlite operation guide

Source: Internet
Author: User

SQLite database installation and basic operation guide, sqlite operation guide

1. Introduction

SQLite is an open-source embedded Relational Database Engine for SQL database with self-contained, zero configuration, and transaction support. It is highly portable, easy to use, compact, efficient, and reliable. Unlike other database management systems, SQLite is easy to install and run. In most cases, you can create, connect to, and use a database by ensuring that the binary file of SQLite exists. If you are looking for an embedded database project or solution, SQLite is definitely worth considering.

2. Installation

SQLite on Windows

1) enter the SQL download page: http://www.sqlite.org/download.html

2) download the pre-compiled Binary Package in Windows:

Sqlite-shell-win32-x86-<build #>. zip
Sqlite-dll-win32-x86-<build #>. zip
Note: <build #> is the sqlite compilation version.

Decompress the zip file to your disk and add the decompressed directory to the PATH variable of the system to execute the sqlite command in the command line.

Optional: If you plan to release an application based on the sqlite database, you also need to download the source code to compile and use its API

Sqlite-amalgamation-<build #>. zip

SQLite on Linux

Multiple Linux releases provide convenient commands to obtain SQLite:

/* For Debian or Ubuntu /* $ sudo apt-get install sqlite3 sqlite3-dev  /* For RedHat, CentOS, or Fedora/* $ yum install SQLite3 sqlite3-dev SQLite on Mac OS X

If you are using Mac OS snow leopard or a newer version of the system, SQLite is installed on the system.

3. Create the first SQLite Database

Now that you have installed the SQLite database, create the first database. In the command line window, enter the following command to create a database named test. db.

Sqlite3 test. db
Create a table:

sqlite> create table mytable(id integer primary key, value text); 2 columns were created. 

This table contains a primary key field named id and a text field named value.

Note: at least one table or view must be created for the newly created database to save the database to the disk. Otherwise, the database will not be created.

Next, write some data to the table:

sqlite> insert into mytable(id, value) values(1, 'Micheal'); sqlite> insert into mytable(id, value) values(2, 'Jenny'); sqlite> insert into mytable(value) values('Francis'); sqlite> insert into mytable(value) values('Kerk'); 

Query data:

sqlite> select * from test; 1|Micheal 2|Jenny 3|Francis 4|Kerk 

Set to format the query result:

sqlite> .mode column; sqlite> .header on; sqlite> select * from test; id     value ----------- ------------- 1      Micheal 2      Jenny 3      Francis 4      Kerk 

. Mode column is set to column Display mode, And. header is used to display column names.

Modify the table structure and add columns:

sqlite> alter table mytable add column email text not null '' collate nocase;; 

Create View:

sqlite> create view nameview as select * from mytable; 

Create an index:

sqlite> create index test_idx on mytable(value); 

4. Some useful SQLite commands

Display table structure:

sqlite> .schema [table] 

Obtain all tables and views:

sqlite > .tables 

Obtain the index list of the specified table:

sqlite > .indices [table ] 

Export the database to an SQL file:

sqlite > .output [filename ] sqlite > .dump sqlite > .output stdout 

Import a database from an SQL file:

sqlite > .read [filename ] 

Format output data to CSV format:

sqlite >.output [filename.csv ] sqlite >.separator , sqlite > select * from test; sqlite >.output stdout 

Import data from a CSV file to a table:

sqlite >create table newtable ( id integer primary key, value text ); sqlite >.import [filename.csv ] newtable 

Back up the database:

/* usage: sqlite3 [database] .dump > [filename] */ sqlite3 mytable.db .dump > backup.sql 

Restore database:

/* usage: sqlite3 [database ] < [filename ] */ sqlite3 mytable.db < backup.sql 


How to install and use the sqlite database, because I don't know whether to install it after reading it.

Sqlite databases do not need to be installed.
You can use the sqlite program to generate a database file. For example, test. db (the file name is set by yourself, and the extension is not required)

Of course, your program must support sqlite. For example, php is set in configuration.

Then you can call the sqlite function in the program to operate the file.

Tutorial: Install sqlite in android

Installation path? The default database creation method is SQLiteDatabaseHelper (Context context, String name, CursorFactory factory, int version)
Parameter description: context: Current page name: Database name factory is generally blank version: the initial value of the database version can be 1
Then the database path is: data/package name/database name that references this method
 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.