📜  SQLite和dBASE之间的区别

📅  最后修改于: 2021-08-27 17:41:53             🧑  作者: Mango

1. SQlite:
SQLite是一个提供关系数据库管理系统(RDBMS)的软件库。它是由D. Richard Hipp在2000年8月设计的。SQLite的设计目标是允许在不安装数据库管理系统(DBMS)或不需要数据库管理员的情况下运行该程序。 SQLite中的lite意味着在设置,数据库管理和所需资源方面的轻量级。

2. dBASE:
dBase是在Windows平台上运行的微型计算机数据库管理系统(DBMS)。它是最早在微型计算机上运行的数据库系统之一。它是由Asthon Tate在1979年开发的。它旨在处理关系数据库。如今,使用的是dBASE PLUS 11版本。该版本于2016年发布。

SQLite和dBASE之间的区别:-

S.N0. SQLite dBASE
1. Developed By D. Richard Hipp on August 2000. Developed by Asthon Tate in 1979
2. MYSQL is open  source   software, public domain software. dBASE is commercial software only licensed version.
3. SQLite do not have any server operting system DOS and Windows are server operating system using dBASE.
4. ADO.NET, JDBC, ODBC, e.t.c are used as APIs and other access method. It does not support any APIs and access method.
5. SQLite support SQL(standard query language) dBASE does not support SQL
6. ACID properties (Atomicity, Consistency, Isolation, and Durability) of transaction is followed by SQLite. dBASE does not hold for ACID properties
7. No Access right for users in SQLite Access rights for users and roles is in dBASE
8. Triggers can be used in SQLite Triggers can’t be used in dBASE.