Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
ooSQLite-1.0.1.12617-x86_64.exe | 2023-01-19 | 3.6 MB | |
ooSQLite-1.0.1.12617-x86_32.exe | 2023-01-18 | 3.1 MB | |
liboosqlite.so | 2023-01-05 | 2.0 MB | |
ooSQLite-1.0.0.11910-x86_32.exe | 2019-09-07 | 2.7 MB | |
ooSQLite-1.0.0.11910-x86_64.exe | 2019-09-07 | 3.0 MB | |
ooSQLite-1.0.0.11783-3.27.1-x86_32.exe | 2019-02-19 | 2.6 MB | |
ooSQLite-1.0.0.11783-3.27.1-x86_64.exe | 2019-02-19 | 3.0 MB | |
ooSQLite-1.0.0.11703-x86_32.exe | 2019-02-01 | 2.6 MB | |
ooSQLite-1.0.0.11703-x86_64.exe | 2019-02-01 | 2.9 MB | |
ooSQLite_1_0_0_9974_x86_64_lin.tgz | 2014-04-20 | 2.6 MB | |
ooSQLite-ReadMe.txt | 2014-04-20 | 2.3 kB | |
ReadMe.txt | 2014-04-20 | 27.4 kB | |
ooSQLite-1.0.0.9974-x86_64.exe | 2014-04-20 | 2.5 MB | |
ooSQLite-1.0.0.9906-x86_32.exe | 2014-02-09 | 2.3 MB | |
ooSQLite_1_0_0_9391_x86_32_lin.tgz | 2013-08-28 | 2.6 MB | |
ooSQLite-V1.0.0.macosx.Intel.dmg | 2012-09-15 | 2.4 MB | |
Totals: 16 Items | 38.1 MB | 1 |
ooSQLite ======== ooSQLite is an ooRexx extension that provideds an interface to the SQLite database engine. For complete details on SQLite, go to: http://www.sqlite.org The SQLite database engine is embedded in the ooSQLite extension. SQLite does not have a license or copyright, but rather: "All of the deliverable code in SQLite has been dedicated to the public domain by the authors. All code authors, and representatives of the companies they work for, have signed affidavits dedicating their contributions to the public domain and originals of those signed affidavits are stored in a firesafe at the main offices of Hwaci. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means." Using ooSQLite: ------------- ooSQLite is currently distributed as 32-bit and 64-bit binaries along with some example programs and some informal example programs. The informal examples were used during development and may not be rigorously commented. Eventually the informal examples may be either dropped from the distribution, or enhanced to make them better examples. To use ooSQLite in your ooRexx programs simply add this requires statement to the program: ::requires 'ooSQLite.cls' and ensure that the files ooSQLite.cls and ooSqlite.dll (Windows) or oosqlite.so (unix-like systems) are somewhere in the path on your system. foodsPristine.rdbx ------------------ The binary database file, foodsPristine.rdbx, located in the samples/misc directory, was created from a database definition file, foods.sql, included in the example code that accompanies the book: "Definitive Guide to SQLite", Second Edition, by Grant Allen and Mike Owens, published by Apress. Apress and the authors have okayed the use and inlcusion of the binary file in the ooRexx project. foodsPristine.rdbx is then copied into the examples directories, as ooFoods.rdbx. ooFoods.rdbx is used in some of the testing and example programs.