X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f From: To: djgpp AT delorie DOT com Subject: Re: Re: database library? Date: Tue, 10 Aug 2004 18:06:04 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1255 Content-Transfer-Encoding: 7bit Message-Id: <20040810150604.DWMH17194.fep1@[212.117.129.234]> Reply-To: djgpp AT delorie DOT com matt, i will point you here to the documentation of the c api to sqlite, and to the compiling page. please note that my port to djgpp pertains to sqlite stable version 2, up to the last 2.8.15. i will work on the newer version later. you can download the source here: http://www.sqlite.org/sqlite-source-2_8_15.zip my patches are necessary especially to handle short file names and lack of locking facilities under dos, but they also fix some adjacent but general bugs in sqlite. please follow the instructions at: http://www.sqlite.org/cvstrac/wiki?p=HowToCompile here is the sqlite version 2 c api documentation. it is very simple and comprehensive: http://www.sqlite.org/c_interface.html once you open an sqlite database, it will be responsive to all your standard sql commands, and it will get you query results as an array of strings in the form described in the documentation above. good luck, alex