Salesforce

SQLite Databases (Magic xpa 2.x)

« Go Back

Information

 
Created ByKnowledge Migration User
Approval Process StatusPublished
Objective
Description

SQLite Databases (Magic xpa 2.x)

The SQLite database is a single user, self-contained transactional SQL database engine that does not require a server or any installation or configuration.

The SQLite database is always installed so you do not need to select it in the Magic xpa installation wizard.

The following is information about working with the SQLite database:

Table Position

SQLite supports ROWID as the table position. The default position is ROWID.

Get Definition

For SQLite, if the primary key is a single column that auto-increments, the Get Definition utility will not bring the key into the table structure. This is because there is not a separate index using the column. The index internally refers to ROWID.

Hints

Hints are not supported and will be disregarded.

Isolation level

Isolation level cannot be changed. Any changes in the DBMS will be disregarded.

Joins

Inner and Outer joins should be implemented using the same syntax as in the SQL Server.

Transactions

Physical /deferred transactions are supported.

Array fetching

SQLite does not support array fetching. Therefore, the array size setting will be disregarded and the records will be fetched one record at a time.

Parallel execution

A single Magic xpa engine, or multiple engines on the same machine, may access SQLite via parallel programs. In such a case, only one thread/EXE can open a physical transaction, since the SQLite file is exclusively locked.

APG

Using the Automatic Program Generator (APG) in DSQL SELECT statements will result in the Null Allowed column property being set to Yes.

Identity

Identity should be defined as Type INTEGER PRIMARY KEY.

SQLite does not allow more than one INTEGER PRIMARY KEY fields.

Identity fields are stored as INT64 data types in SQLite; therefore, you should create a Numeric field to hold 8 bytes of data.

Since version:

1.9e

Related Topics

Reference
Attachment 
Attachment