Rexx/SQL

A Rexx interface to SQL databases

Version 2.5

10 October 2006


Appendix I - Rexx/SQL for SQLite3

This section describes features of Rexx/SQL specific to the SQLite implementation. Support is no longer offered for SQLite prior to version 3.

General:

Bind Variables:

SQLite supports standard placemarkers and SQLite specific placemarkers. Need to document how these work; similar to Oracle.

Transactons:

SQLite supports transactions, but you need to explicitly execute a "BEGIN TRANSACTION" command to start a transaction. See tester.cmd sample program for an example.

Data types:

SQLite is a typeless database. All columns are stored as text, so SQLite3 allows any datatype you want. Rexx/SQL for SQLite3 however, supports the following datatypes explicitly:

The datatypes supported by Rexx/SQL for SQLite can be determined by a call to SQLGETINFO with the DATATYPES option.


Copyright © Mark Hessling 1997-2006 <mark@rexx.org>


Return to Table of Contents
Last updated 10 October 2006