[sqlite] SQLite3 API

2015-12-01 Thread Cousin Stanley
>> Any plans for distribution of your cobol/sqlite interface ? > > The SQLite3 Interface for GnuCOBOL [sql3i4gc] > will soon be available from the Contribution area > of the GnuCOBOL Project > > > > It is being released under the GNU

[sqlite] SQLite3 API

2015-11-30 Thread Robert W.Mills (Phoenix)
| Any plans for distribution of your cobol/sqlite interface ? The SQLite3 Interface for GnuCOBOL [sql3i4gc] will soon be available from the Contribution area of the GnuCOBOL Project. It is being released under the GNU GPLv3. The initial version

[sqlite] SQLite3 API

2015-11-27 Thread Cousin Stanley
> I have written (in COBOL) an SQLite3 interface for GnuCOBOL > Robert Any plans for distribution of your cobol/sqlite interface ? -- Stanley C. Kitching Human Being Phoenix, Arizona

[sqlite] SQLite3 API

2015-11-27 Thread Richard Hipp
On 11/26/15, Robert W.Mills (Phoenix) wrote: > > But how do I get the number of rows UPDATEd or DELETEd? > https://www.sqlite.org/c3ref/changes.html -- D. Richard Hipp drh at sqlite.org

[sqlite] SQLite3 API

2015-11-26 Thread Robert W.Mills (Phoenix)
To all, I have written (in COBOL) an SQLite3 interface for GnuCOBOL and would like to add a routine that will return the number of rows that were selected, updated or deleted by the last executed SQL statement. I currently have a routine, named DBSQL, that calls sqlite3_prepare_v2,

[sqlite] SQLite3 API Reference omission

2005-05-27 Thread Clark Christensen
One thing I noticed in the API ref for sqlite3_bind_text() and sqlite3_bind_blob() is there's no info describing what the fourth arg is for. After some trial and error, I discovered it's to describe the length of the string/blob in the third arg (duh!) :-) -Clark