Hi Coders
I have a question which doesn't really fit to the Coding Snack section, so I post it here.
Has anyone of you expirience with "Absolute Database" from ComponentAce (Delphi / C++)? The Download for personal use is free, but it does not work with Delphi Personal Edition (which is the only one I have). I need a simple commandline App, which allows me to connect to a DB, fire some queries and getting back the resultset. Background info: I use a PIM which does not offer automatic exports and syncing. But I know that the Data is stored in an AbsolutDB Database. ODBC is not an option
. I figure something like this
export -dbfile="../../pim.db" -queryfile="../export.sql" -outfile="../export.xml"
The Outfile could be as simple as
<resultset>
<row>
<column_name1>value</column_name1>
<column_name2>value</column_name3>
<column_name3>value</column_name3>
</row>
</resultset>
So the question is: Did anyone know a tool which provides me this? Or is someone in the right mood coding the little thing?