RE: [sqlite] Low Level API for SQLite3

2006-05-07 Thread Anish Enos Mathew
Well, currently I am doing a mobile project and we are testing the performance of four databases depending on the time it takes to insert or delete or search a particular data from the database. I am using sqlite3 database. I am using sqlite_exec command for doing a particular process in the

Re: [sqlite] Low Level API for SQLite3

2006-05-07 Thread John Stanton
You can get the source code from sqlite.org. What more do you need if you are going to come up with a new version of Sqlite? You might look to caching compiled (prepared) SQL statements and using sqlite3_step as a very powerful method of not just reducing SQL parsing time but making it a

RE: [sqlite] Low Level API for SQLite3

2006-05-07 Thread Anish Enos Mathew
Ya, I know about the API's given in sqlite.org. but that does not contribute much to my reqirements. I want low level API's so that we can reduce the parsing time taken by the sqlite parser. -Original Message- From: Lindsay [mailto:[EMAIL PROTECTED] Sent: Monday, May 08, 2006 10:25 AM

Re: [sqlite] Low Level API for SQLite3

2006-05-07 Thread Bill KING
Anish Enos Mathew wrote: > Any body know whether there are any low level C API's for sqlite3 ? > > > ** > > The information contained in, or attached to, this e-mail, contains > confidential information and is intended solely for the use of

[sqlite] Low Level API for SQLite3

2006-05-07 Thread Anish Enos Mathew
Any body know whether there are any low level C API's for sqlite3 ? ** The information contained in, or attached to, this e-mail, contains confidential information and is intended solely for the use of the individual or entity to whom

Re: [sqlite] How to get the lastest version of SQLITE with PHP ???

2006-05-07 Thread Kevin Waterson
This one time, at band camp, Ivan Voras <[EMAIL PROTECTED]> wrote: > On my platform (FreeBSD) the bundled version is not > used by default so that's how I came to the wrong > conclusion. If you can rebuild it from scratch, maybe > you also can exclude the bundled library. Other than this, you

Re: [sqlite] XML to SQLite upload

2006-05-07 Thread A. Pagaltzis
* Steve O'Hara <[EMAIL PROTECTED]> [2006-05-07 11:20]: > This is the right approach, when I worked in the SGML world > with a component versioning system, we called it the > "non-linear" design. > > By going down this road, your table schema is static and can > cope with any type of DTD without

Re: [sqlite] How to get the lastest version of SQLITE with PHP ???

2006-05-07 Thread Ivan Voras
--- Night Media LTD <[EMAIL PROTECTED]> wrote: > > Release What has changed? > > 1.0.1 - Updated libsqlite in ext/pdo_sqlite to > 3.2.8. (Ilia) >From the source of config.m4 in ext/pdo_sqlite: --with-pdo-sqlite[=DIR] PDO: sqlite support. DIR is the sqlite base directory, the bundled sqlite

Re: [sqlite] R�f. : Re: [sqlite] How to get the lastest version of SQLITE with PHP ???

2006-05-07 Thread Ivan Voras
--- Night Media LTD <[EMAIL PROTECTED]> wrote: > > > Already tested but this not worked. > > Because in fact pdo_sqlite look have is own sqlite > library into > Php_source_dir/ext/pdo_sqlite/sqlite I was talking about the PECL PHP extension. Don't know about the bundled one.

[sqlite] Réf. : Re: [sqlite] How to get the lastest version of SQL ITE with PHP ???

2006-05-07 Thread Night Media LTD
    Already tested but this not worked.   Because in fact pdo_sqlite look have is own sqlite library into Php_source_dir/ext/pdo_sqlite/sqlite   But maybe you are sure of what you said, and you can tell me more ??   Thanks

[sqlite] How to get the lastest version of SQLITE with PHP ???

2006-05-07 Thread Night Media LTD
Hi all ! I ve searched a long time, but I didn't found how to get the lastest sqlite version with php ! I only got the the 3.2.8 (if my memory is good), with the pdo_sqlite with php5. There is a way to get the lastest ??? I ve try to manual compil and install the lastest SQLite (all

[sqlite] Displaying a SQLite databse in VB.Net

2006-05-07 Thread John Newby
Hi, I am having some trouble displaying the data from a database in my VB.Net application, I am using the Finisar ADO.Net wrapper to connect to the SQLite database. I can display the data using messageboxes and textboxes so I know it's working, I just can't figure out how to display it in

[sqlite] RE: [RBL] Re: [sqlite] XML to SQLite upload

2006-05-07 Thread Steve O'Hara
This is the right approach, when I worked in the SGML world with a component versioning system, we called it the "non-linear" design. By going down this road, your table schema is static and can cope with any type of DTD without change. However, you need to create a tool that will convert your

[sqlite] Execute SQLite statements within callback

2006-05-07 Thread mtenuta
Is this possible? I need to either delete the current row or update a field in the current row during the callback execution for that row. I am using the sqlite3 C API. Any suggestions would be greatly appreciated. -- View this message in context: