📜  Derby和SQLite之间的区别

📅  最后修改于: 2021-08-25 18:29:09             🧑  作者: Mango

1.德比:
Derby是用Java实现的功能齐全的开源关系数据库管理系统(RDBMS),顾名思义,它是由Apache Software Foundations开发的。它基于Java,JDBC和SQL标准。 Derby易于安装,部署和使用。它可以嵌入Java应用程序中,也可以用作数据库服务器。

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

Derby和SQLite之间的区别:

SR.NO Derby SQLite
1 It is developed by Apache Software Foundation in 1997 It is developed By D. Richard Hipp in 2000.
2 It is written in Java language. It is written in C language.
3 The primary database model for Derby is Relational DBMS. The primary database model for SQLite is Relational DBMS.
4 Server operating systems for Derby are Windows, macOs, Linux, Unix, BSD and z/OS. SQLite does not require a server to run. Hence, it is serverless.
5 It has Java Stored Procedures for Server-side scripts. It does not support Server-side scripting.
6 It support Master-Slave Replication methods. It does not support any replication methods.
7 APIs and other access methods used by Derby is JDBC. APIs and other access methods used by SQLite are ADO.NET, JDBC and ODBC.
8 It support only Java programming language. It support C, C#, C++, D, Delphi, Java, JavaScript, Lua, MatLab, Objective-C, Perl, PHP, PL/SQL, Python, R, Ruby, Scala, etc.
9 It provide XML support. It do not provide XML support.
10 It support fine grained access rights according to SQL-standard. It do not support access rights for user.