From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,3ac0f9399164ca9f,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news2.google.com!npeer02.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post02.iad.highwinds-media.com!news.flashnewsgroups.com-b7.4zTQh5tI3A!not-for-mail Newsgroups: comp.lang.ada Subject: Qt Ada database support? From: Stephen Leake Date: Tue, 09 Jun 2009 07:30:06 -0400 Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (windows-nt) Cancel-Lock: sha1:7FOw2Kg2/tciVxemuu3SDODlTEE= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@flashnewsgroups.com Organization: FlashNewsgroups.com X-Trace: 6c31e4a2e47b2e9cadf9d25119 Xref: g2news2.google.com comp.lang.ada:6389 Date: 2009-06-09T07:30:06-04:00 List-Id: I currently have a small database application, implemented using GtkAda and GNADE ODBC, using a MySQL backend. I'd like to switch to a direct connection to an SQLite3 database, mainly because the administration is much simpler. For example, I could not get an ODBC connection to a MySQL database installed, let alone working, on my Debian box (I currently have it working on Windows XP). The MySQL installation instructions are woefully out of date. The GNADE binding to SQLite3 is very minimal. I wouldn't mind very much improving it, but I'm investigating alternatives first. Does anyone know of an ODBC connector for SQLite3? Searching on Ask.com found: http://www.ch-werner.de/sqliteodbc/, which doesn't look current. http://www.patthoyts.tk/sqlite3odbc.html, which is Windows only, but current I'm also looking at QtAda, and the QtSQL class. The documentation for QtSQL (http://doc.trolltech.com/4.5/qtsql.html) doesn't say anything about the database backends; it appears to assume an ODBC connection. Can anyone confirm that QtSQL uses ODBC? or can it connect directly to SQLite3? -- -- Stephe