Soft82.com » Windows » Developer Tools » Database » Administration » SQLite 3.7.6
SQLite 3.7.6
Download SQLite
| Developer | |
| Product Homepage | |
| Date Added | May 25, 2011, 08:55 GMT |
| License | Free (Freeware) |
| Last Week / All Time Downloads | 13 / 1,881 |
| Size | 307.2K |
| OS Support | Windows All |
SQLite Description
A simple command-line utility
To start the sqlite3 program, just type "sqlite3" followed by the name the file that holds the SQLite database. If the file does not exist, a new one is created automatically. The sqlite3 program will then prompt you to enter SQL. Type in SQL statements (terminated by a semicolon), press "Enter" and the SQL will be executed.
For example, to create a new SQLite database named "ex1" with a single table named "tbl1", you might do this:
$ sqlite3 ex1
SQLite version
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table tbl1(one varchar(10), two smallint);
sqlite> insert into tbl1 values('hello!',10);
sqlite> insert into tbl1 values('goodbye', 20);
sqlite> select * from tbl1;
hello!|10
goodbye|20
sqlite>
You can terminate the sqlite3 program by typing your systems End-Of-File character (usually a Control-D). Use the interrupt character (usually a Control-C) to stop a long-running SQL statement.
Make sure you type a semicolon at the end of each SQL command! The sqlite3 program looks for a semicolon to know when your SQL command is complete. If you omit the semicolon, sqlite3 will give you a continuation prompt and wait for you to enter more text to be added to the current SQL command. This feature allows you to enter SQL commands that span multiple lines. For example:
sqlite> CREATE TABLE tbl2 (
...> f1 varchar(30) primary key,
...> f2 text,
...> f3 real
...> );
sqlite>
Aside: Querying the SQLITE_MASTER table
The database schema in an SQLite database is stored in a special table named "sqlite_master". You can execute "SELECT" statements against the special sqlite_master table just like any other table in an SQLite database. For example:
$ sqlite3 ex1
SQLite vresion 3.6.11
Enter ".help" for instructions
sqlite> select * from sqlite_master;
type = table
name = tbl1
tbl_name = tbl1
rootpage = 3
sql = create table tbl1(one varchar(10), two smallint)
sqlite>
But you cannot execute DROP TABLE, UPDATE, INSERT or DELETE against the sqlite_master table. The sqlite_master table is updated automatically as you create or drop tables and indices from the database. You can not make manual changes to the sqlite_master table.
The schema for TEMPORARY tables is not stored in the "sqlite_master" table since TEMPORARY tables are not visible to applications other than the application that created the table. The schema for TEMPORARY tables is stored in another special table named "sqlite_temp_master". The "sqlite_temp_master" table is temporary itself.
SQLite 100% CLEAN Certification
SQLite has been tested by Soft82.com team against viruses, spyware, adware, trojan, backdoors and was found to be 100% clean. Our editors will recheck this software periodically to assure that it remains clean.
View Antivirus ReportSQLite Version History
| Product | Date Added |
|---|---|
| SQLite 3.7.6 | May 25, 2011 - Latest Version |
| SQLite 3.7.4 | December 09, 2010 |
| SQLite 3.7.3 | October 08, 2010 |
| SQLite 3.7.2 | August 25, 2010 |
| SQLite 3.6.23.1 | August 05, 2010 |
| SQLite 3.6.22 | February 16, 2010 |
| SQLite 3.6.21 | December 08, 2009 |
Download SQLite
New Administration Software
Azure Cloud DirectorMay 23, 2012Single Click Deployment To Azure |
STDU XMLEditor PortableMay 22, 2012STDU XML Editor is a lightweight editor of XML documents |
|||
DBEdit2May 21, 2012A database editor, suitable as front-end for all your relational databases |
SQLite ManagerMay 16, 2012A small program to manage SQLite databases |
|||
SqlDbx Personal EditionMay 16, 2012SqlDbx is a fast and easy to use database SQL development IDE for database administrators and... |
SQL Cloud Backup FreeMay 16, 2012Compress, encrypt and store your SQL Server backups on a local disk |
|||
MySQL Editor SoftwareMay 8, 2012Sobolsoft offers a solution for MySQL editing |
XBMC Cache ManagerMay 7, 2012A Windows Service to manage a shared XBMC MySQL database and shared cache folder |
|||
DBF Commander ProfessionalApril 27, 2012Easy-to-use and the most mighty DBF processing tool, including SQL queries |
EMS SQL Manager for SQL ServerApril 19, 2012Powerful graphical tool for SQL Server administration and development |
|||
Advanced ETL ProcessorApril 13, 2012Advanced ETL Processor is designed to automate extracting data from ANY database |
iQ-SQLApril 10, 2012A SQL Query tool for SQL Anywhere |
|||
Access To MySQL ConverterApril 6, 2012Convert your Access database to a MySQL database |
DB Elephant PostgreSQL ConverterApril 3, 2012Converts PostgreSQL to dbf, xls, pdf, doc, xml, csv, txt, sql |
|||
SQL To MySQL ConverterApril 2, 2012Convert your SQL database to a MySQL database |
ConnInfoMarch 22, 2012Ensure that Project Server administrators maintain user roles and registry settings |
|||
Project Server Data Population ToolMarch 22, 2012Load large amounts of custom outline codes, resources, projects and tasks |
xSQL ObjectMarch 13, 2012Compare and synchronize sql server databases - all objects, SQL Server 2000/2005 |
|||
Access To PostgreSQL ConverterMarch 13, 2012Convert your Access database to a PostgreSQL database |
AdminerMarch 12, 2012A full-featured database management tool written in PHP |
|||
Last 7 Days Most Downloaded Administration Products
Navicat for MySQL82 downloadsNavicat - Admin tool for MySQL database management |
Navicat Lite48 downloadsA fast, reliable and affordable Database Administration tool |
|||
Advanced ETL Processor27 downloadsAdvanced ETL Processor is designed to automate extracting data from ANY database |
SQLyog Community Edition21 downloadsSQLyog is a fas and compact Win32 Front End for MySQL |
|||
SQLite13 downloadsA simple command-line utility |
SQLCE Viewer11 downloadsSqlCe Viewer is a database management tool |
|||
RazorSQL Portable8 downloadsQuery, edit, browse, and manage all databases from one database client |
Virtual PC7 downloadsWith Microsoft® Virtual PC 2007, you can create and run one or more virtual machines, each with its... |
|||
ContactKeeper5 downloadsContactKeeper is a free personal information manager to store contact information about your |
SqlDbx Personal Edition5 downloadsSqlDbx is a fast and easy to use database SQL development IDE for database administrators and... |
|||
All Time Most Downloaded Administration Products
Navicat for MySQL17,561 downloadsNavicat - Admin tool for MySQL database management |
Navicat Lite4,184 downloadsA fast, reliable and affordable Database Administration tool |
|||
Advanced ETL Processor1,043 downloadsAdvanced ETL Processor is designed to automate extracting data from ANY database |
SQLyog Community Edition1,507 downloadsSQLyog is a fas and compact Win32 Front End for MySQL |
|||
SQLite1,881 downloadsA simple command-line utility |
SQLCE Viewer564 downloadsSqlCe Viewer is a database management tool |
|||
RazorSQL Portable781 downloadsQuery, edit, browse, and manage all databases from one database client |
Virtual PC3,576 downloadsWith Microsoft® Virtual PC 2007, you can create and run one or more virtual machines, each with its... |
|||
ContactKeeper471 downloadsContactKeeper is a free personal information manager to store contact information about your |
SqlDbx Personal Edition688 downloadsSqlDbx is a fast and easy to use database SQL development IDE for database administrators and... |
|||
Download SQLite

