शुक्रवार, 25 नवंबर 2011

SQLite database engine


SQLite is a database engine which creates the .db file to store the information. It is a very light database engine.

SQLite is a SQL database engine with the following characterstics

1)    Self-Contained: It requires very minimal support from external libraries or from the operating system.
2)    Serverless: The process that wants to access the database reads and writes directly from the database files on disk. There is no intermediary server
                    process.
3)    Zero-Configuration: SQLite does not need to be "installed" before it is used.
4)    Transactional: In which all changes and queries appear to be Atomic, Consistent, Isolated, and Durable

Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.It is a cross-platform code.

 downloaded the source code from http://www.sqlite.org/download.html official website. It is a plain sqlite3.c file.   have created an application(32-bit and 64-bit) by using this C file. It is working fine on both 32-bit and 64-bit machines.

कोई टिप्पणी नहीं:

एक टिप्पणी भेजें

fly