

Modifies an existing database object, such as a table.ĭeletes an entire table, a view of a table or other object in the database. These commands can be classified into groups based on their operational nature − DDL – Data Definition Language Sr.No.Ĭreates a new table, a view of a table, or other object in database. They are CREATE, SELECT, INSERT, UPDATE, DELETE and DROP. The standard SQLite commands to interact with relational databases are similar to SQL. The only access permissions that can be applied are the normal file access permissions of the underlying operating system.
#Sqlitemanager key update
You may not execute a DELETE, INSERT, or UPDATE statement on a view. The DROP COLUMN, ALTER COLUMN, ADD CONSTRAINT are not supported.įOR EACH ROW triggers are supported but not FOR EACH STATEMENT triggers. The RENAME TABLE and ADD COLUMN variants of the ALTER TABLE command are supported. There are few unsupported features of SQL92 in SQLite which are listed in the following table.

#Sqlitemanager key mac
SQLite is available on UNIX (Linux, Mac OS-X, Android, iOS) and Windows (Win32, WinCE, WinRT).SQLite is written in ANSI-C and provides simple and easy-to-use API.SQLite supports most of the query language features found in SQL92 (SQL2) standard.SQLite transactions are fully ACID-compliant, allowing safe access from multiple processes or threads.SQLite is self-contained, which means no external dependencies.SQLite is very small and light weight, less than 400KiB fully configured or less than 250KiB with optional features omitted.A complete SQLite database is stored in a single cross-platform disk file.SQLite comes with zero-configuration, which means no setup or administration needed.SQLite does not require a separate server process or system to operate (serverless).

SQLite accesses its storage files directly. SQLite engine is not a standalone process like other databases, you can link it statically or dynamically as per your requirement with your application. It is a database, which is zero-configured, which means like other databases you do not need to configure it in your system. SQLite is an in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. You can manage any SQLite database created on any platform with SQLiteManager. SQLiteManager is a database manager for SQLite databases.
