[sqlite] Is there a demand for Client / Server Modules ? (It seems to be..)

2004-06-17 Thread Alex K
I didn't expect such a quick response... And unfortunatelly the link I gave was broken :-( So for people who don't want to wait until SourceForge release, I made a quick-and-dirty pre-release on my site: http://www.it77.de/sqlite/sqlite_sockets.htm Best regards Alex K.

[sqlite] Re: Réf. : Re: [sqlite] Is there a demand for Client / Server Modules ?

2004-06-17 Thread Alex K
compiler.   The same procedure under Linux: Client uses sqlite_client.so for remote calls. Server accept the calls and uses original sqlite.so for local database access.   Best regards   Alex K.     - Original Message - From: Gregory Letellier To: [EMAIL PROTECTED] Sent

Re: [sqlite] Is there a demand for Client / Server Modules ?

2004-06-17 Thread Alex K
Sorry for broken link. It is http://www.it77.de/sqlite/sqlite.htm - Original Message - From: "Alex K" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 17, 2004 4:20 PM Subject: [sqlite] Is there a demand for Client / Server Modules ? > I am ab

[sqlite] Is there a demand for Client / Server Modules ?

2004-06-17 Thread Alex K
strange problems (perhaps because of pthreads) Is there any demand for this ??? - Alex K. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [sqlite] what's the character limit of a single sql in sqlite?

2004-06-15 Thread Alex K
There is a limit of 1MB per row. See description of the SQLITE_TOOBIG error below. So if you have a SQL string which size is less than 1MB, it definitly works. If your single INSERT is more than 1 MB, it definitly does not work. But you can change this limit in source code and recompile, if you wan