Re: [sqlite] uSQLiteServer Source code available

2005-11-12 Thread Alfredo Cole
El Sábado, 12 de Noviembre de 2005 18:24, [EMAIL PROTECTED] escribió: > I have reorganized the archive and got all the source into it this time. > > http://users.iol.it/irwin > > It's an interesting concept. I downloaded it and will try it. Thank you, Roger. -- Alfredo J. Cole Grupo ACyC

Re: [sqlite] Book recommendation

2005-11-10 Thread Alfredo Cole
El Jueves, 10 de Noviembre de 2005 18:44, escribió: (...) > > I do not think that's necessary on my part... using version 7... > Programming Ruby > The Pragmatic Programmers’ Guide > Second Edition > http://www.amazon.com/gp/product/0974514055/103-2642709-1351861?v=glance >=283155=glance >

Re: [sqlite] Book recommendation

2005-11-10 Thread Alfredo Cole
El Jueves, 10 de Noviembre de 2005 11:33, escribió: > Alfredo Cole wrote: > > El Miércoles, 9 de Noviembre de 2005 14:21, Joe Halpin escribió: > > > I'm looking for a good tutorial (online or paper) to help me get the > > > concepts behind using the C/C++ API. Coul

Re: [sqlite] Book recommendation

2005-11-09 Thread Alfredo Cole
El Miércoles, 9 de Noviembre de 2005 14:21, Joe Halpin escribió: > I'm looking for a good tutorial (online or paper) to help me get the > concepts behind using the C/C++ API. Could anyone recommend the book by > Chris Newman "SQLite: A practical guide to using, administering and > programming

Re: [sqlite] Number of rows in a query result

2005-10-27 Thread Alfredo Cole
El Jueves, 27 de Octubre de 2005 15:44, Radu Lodina escribió: > Hi Alfredo, > > > I supose you don't use > sqlite3_get_tablefu >nction right ? > > > Call another query with: > SELECT COUNT(*) AS NrRecords FROM ( ) > > > Radu

[sqlite] Number of rows in a query result

2005-10-27 Thread Alfredo Cole
Hi: In order to update a progress bar, I need to know the total number of rows returned by a query, similar to MySQL's mysql_num_rows. Is there a function like that in the C API? I may have overlooked it, but have not found it so far. Thank you. -- Alfredo J. Cole Grupo ACyC

Re: [sqlite] Sample code

2005-10-26 Thread Alfredo Cole
El Miércoles, 26 de Octubre de 2005 16:17, John Stanton escribió: > Alfredo, this simple example may may help > (...) This is good! Thank you and regards. -- Alfredo J. Cole Grupo ACyC

Re: [sqlite] Sample code

2005-10-26 Thread Alfredo Cole
El Miércoles, 26 de Octubre de 2005 08:53, escribió: > On 10/26/05, Alfredo Cole <[EMAIL PROTECTED]> wrote: > > I have searched, but have not found samples of actual uses of > > sqlite_compile, sqlite_step and sqlite_finalize. Could anybody point the > > way

[sqlite] Sample code

2005-10-26 Thread Alfredo Cole
Hi: I have searched, but have not found samples of actual uses of sqlite_compile, sqlite_step and sqlite_finalize. Could anybody point the way to where I can find samples with source code to use these functions? Thank you. -- Alfredo J. Cole Grupo ACyC

Re: [sqlite] Concat?

2005-10-25 Thread Alfredo Cole
El Martes, 25 de Octubre de 2005 17:08, Puneet Kishor escribió: > On Oct 25, 2005, at 6:08 PM, Alfredo Cole wrote: > > What is the equivalent of: > > > > select concat(col1,col2,col3) from table > > > > in SQlite? > > SELECT col1 ||

[sqlite] Concat?

2005-10-25 Thread Alfredo Cole
Hi: What is the equivalent of: select concat(col1,col2,col3) from table in SQlite? How can I achieve the same results? Thank you. -- Alfredo J. Cole Grupo ACyC

Re: [sqlite] C++ wrapper for SQLite C API

2005-10-25 Thread Alfredo Cole
El Martes, 25 de Octubre de 2005 08:55, Martin Engelschalk escribió: > Hello Alfredo, > > i used a Wrapper from CodeProject by Rob Groves: > http://www.codeproject.com/database/CppSQLite.asp > I changed the code a bit (mostly deleted stuff i do not need), and i am > not sure if all features

[sqlite] C++ wrapper for SQLite C API

2005-10-25 Thread Alfredo Cole
Hi: I am looking for a C++ wrapper that will support all features of SQLite. I am using sqlitewrapped-1.0 but does not work correctly when trying to read from a table and insert to another one within the same method. Also, it seems the author is not working on it any longer. I would