SQLite

SQLite

SQLite is an embedded open-source relational database engine. SQLite is extremely popular - it’s the most widely deployed database engine, used by popular browsers, operating systems, embedded systems, mobile applications...

SQLite requires no configuration and works as an in-process library. This means in never runs additional system processes aside with the application that uses it. Complete SQLite database with tables, indexes and code is a simple disk file using exactly the same structure on all supported platforms. This means that SQLite database can simply be copied to be readily used on any other system. Many applications save their projects as SQLite databases - there is no need to reinvent the file format when SQLite is so simple to use and allows reliable and fast reading and write of any data. Databases can be encrypted when any of encryption extensions is used, SQLite Encryption Extension (SEE) being an official one.

SQLite is very compact in size and (depending on compiler) can be under 500kB in size (even under 300kB when unneeded features are excluded). It performs wonderfully in very memory-limited conditions and is therefore often used in cellphones, PDAs and MP3 players.

SQLite uses PostgreSQL as a reference platform when deciding how to deal with SQL standard. However, an important distinction is that SQLite doesn’t enforce type checking - it’s dynamically typed. A table row value will have a specific type, but its column will not enforce its type specification when data is written. That’s pretty confusing for anyone with any experience with other relational databases, though useful.

At this moment our products expect SQLite database to conform to its database schema. In the near future we plan to add an option to dynamically scan the data and decide optimal data types, in the same way we already do with CSV data, for example.

Full Convert supports SQLite database directly.

SQLite data types we support

Integral

bigint, integer (int)

Decimal

double (numeric)

Text

text

Date/Time

datetime

Large objects

blob, text

Export SQLite database

It may make sense to migrate your data away from SQLite. You may want to do it permanently or just need to share your tables with a collague in a different format.

We will copy all your tables with their data and apply indexing and relationships exactly as they are in your current SQLite database. In a nutshell, you get exactly the same database in another database engine. Each time you run the migration, we will copy all the tables again. Of course, we have a built-in scheduler, so you can run this overnight and have a fresh database copy in the morning.

Take a look at the quick tutorials below to see how it's done.