Re: [sqlite] SQLite utilty to import XML

2009-01-28 Thread Salles, Joaquim Campos
Cool Thanks Joaquim -Original Message- I think the firefox SQLite Manager plugin can do XML. http://code.google.com/p/sqlite-manager/ Alex ___ sqlite-users mailing list sqlite-users@sqlite.org

[sqlite] SQLite utilty to import XML

2009-01-27 Thread Salles, Joaquim Campos
Hello, I'm looking for an SQLite utility (Windows / Linux) to import XML files into an SQLite Database (free/open source), so I can use it in a shell script to periodicly search a directory and import the XML files. I tried to find one in: http://www.sqlite.org/cvstrac/wiki?p=ManagementTools

[sqlite] database disk image is malformed

2008-01-29 Thread Salles, Joaquim Campos
Hello, Which condition can cause the error: database disk image is malformed. Thanks for the help, Joaquim

[sqlite] SQLite 3.5.4 and libc version less than GLIBC_2.3

2007-12-19 Thread Salles, Joaquim Campos
Is "safe" recompile sqlite3 to use LIBC with version less than 2.3 (like GLIBC_2.2.4)? Thanks for the help, Best regards, Joaquim - To unsubscribe, send email to [EMAIL PROTECTED]

RE: [sqlite] SQL error: database disk image is malformed - SQLITE3.5.1

2007-11-22 Thread Salles, Joaquim Campos
-Original Message- From: Dennis Cote [mailto:[EMAIL PROTECTED] Sent: quinta-feira, 22 de novembro de 2007 12:58 To: sqlite-users@sqlite.org Subject: Re: [sqlite] SQL error: database disk image is malformed - SQLITE3.5.1 > > > There is a good description of the things that can cause

[sqlite] SQL error: database disk image is malformed - SQLITE 3.5.1

2007-11-22 Thread Salles, Joaquim Campos
I'm using SQLITE 3.5.1 - in Linux, Had Red 7.1, with a single thread application - and 2 different programs accessing the same database. I am getting the following message: SQL error: database disk image is malformed. I copy the database to windows and run with sqlite and also get the same

RE: [sqlite] is safe to use the same database connection at the same time in more than one thread?

2007-11-08 Thread Salles, Joaquim Campos
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: quinta-feira, 8 de novembro de 2007 12:04 To: sqlite-users@sqlite.org Subject: Re: [sqlite] is safe to use the same database connection at the same time in more than one thread? >Yes. The wiki page was correct

RE: [sqlite] is safe to use the same database connection at the same time in more than one thread?

2007-11-08 Thread Salles, Joaquim Campos
-Original Message- >From: Salles, Joaquim Campos [mailto:[EMAIL PROTECTED] >Sent: quinta-feira, 8 de novembro de 2007 11:45 >To: sqlite-users@sqlite.org >Subject: [sqlite] is safe to use the same database connection at the same >time in more than one thread? >Is sa

[sqlite] is safe to use the same database connection at the same time in more than one thread?

2007-11-08 Thread Salles, Joaquim Campos
Hello, Is safe to use the same database connection at the same time in more than one thread? The bellow like that is safe: http://www.sqlite.org/34to35.html "Restrictions on the use of the same database connection by multiple threads have been dropped. It is now safe for multiple threads to

RE: [sqlite] Re: How is the best why to retrieve the key of row just insert?

2007-10-22 Thread Salles, Joaquim Campos
From: Igor Tandetnik [mailto:[EMAIL PROTECTED] Sent: segunda-feira, 22 de outubro de 2007 09:59 To: SQLite Subject: [sqlite] Re: How is the best why to retrieve the key of row just insert? Salles, Joaquim Campos > In my case I have another > application > that is also accessing the

[sqlite] How is the best why to retrieve the key of row just insert?

2007-10-21 Thread Salles, Joaquim Campos
Hello, How is the best why to retrieve the key of row just inserted? Is secure to use sqlite3_last_insert_rowid? In my case I have another application that is also accessing the database. Thank you for the help, Best regards, Joaquim de Campos Salles In the documentation(see bellow )