DBDB.io The Encyclopedia of Database Systems · Est. 2017
Database of Databases

Database Entry

ElevateDB


History[03]


Elevate Software was founded in 1998 in North Tonawanda, New York. DBISAM database engine was a product that users did not have to pay licensing fees for. In 2007, ElevateDB was launched as an extension of DBISAM with multiple features.

Compression[04]


DBISAM originally had ZLib compression but this compression was expanded to work for ElevatedDB.

Concurrency Control[05]


ElevateDB has multiple ways to manage processes and locking independent of the user. Row locks and table locks have different protocols. When getting a row for updating, the set protocol is pessimistic and locks that row. Optimistic locking protocol can be used when the row changes are sent back to the table and thus the row needs to be locked.

Row locks are not used until the row is inserted if the transaction takes the action. Updating or deleting the row will only be allowed if the row targeted is not in use.

Data Model[06][07]


ElevateDB allows for users to access tables and reorganize data. Users can migrate, create, and specify databases.

Foreign Keys[08]


The Type columns can support constraints that are foreign keys.

Isolation Levels[09]


A transaction can see the changes being made, but other transactions will see the unchanged version at the time of execution. They will not be able to view the operations in the currently running transaction.

Joins[10]


ElevateDB calculates the estimated cost of operations in a certain order to execute queries as quickly as possible.

Query Compilation[11]


Query Execution


Execution uses the TEDBQuery ExecSQL or Open method. The Open method is used when a result set must be returned. Other cases use the ExecSQL method.

Query Interface


SQL

Stored Procedures[12]


Users can create a new procedure in a database and reuse.

System Architecture[13]


TEDBEngine, TEDBSession, TEDBDatabase, TEDBTable, TEDBQuery, TEDBScript, and TEDBStoredProc are all components. Users can create a local or remote session, configure, and then access a path in the database to a catalog. The catalog contains tables, constraints, and functions.

Views[14]


Can use TEDBTable component to access tables and get result sets.

Citations

15 sources
  1. ElevateDB - Give your application an edge on the competition elevatesoft.com
  2. Starting and Configuring the ElevateDB Server elevatesoft.com
  3. About Elevate Software elevatesoft.com
  4. Compression elevatesoft.com
  5. Locking and Concurrency elevatesoft.com
  6. Starting and Configuring the ElevateDB Server elevatesoft.com
  7. Creating a Local Database elevatesoft.com
  8. Constraints Table elevatesoft.com
  9. Transactions elevatesoft.com
  10. http://elevatesoft.com/manual?action=viewtopic&id=edb2sql&topic=optimizer elevatesoft.com
  11. Executing Queries elevatesoft.com
  12. CREATE PROCEDURE elevatesoft.com
  13. Architecture elevatesoft.com
  14. ElevateDB for Delphi and C++Builder Database Developers elevatesoft.com
  15. Support Forums - View Thread elevatesoft.com
Revision #5