Re: [sqlite] WxDevCpp and Sqlite 3.4.1

2007-08-09 Thread Massimiliano Marini
[cut]

Tnx Clay

--
Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/
"It's easier to invent the future than to predict it."  -- Alan Kay


[sqlite] WxDevCpp and Sqlite 3.4.1

2007-08-09 Thread Massimiliano Marini
Hi all,

Under linux I've no problems with g++ I've compiled sqlite 3.4.1 and created
a makefile with the parameters
(include,library) where I compile the main.cpp and all is right.

I want to compile the same file main.cpp under WxDevCpp but I don't know how
setup sqlite 3.4.1.

Under linux I've the library libsqlite3.so (generated by the compilation of
sqlite) but under windows
I don't know how to setup WxDevCpp with sqlite 3.4.1.

main.cpp is simple (shell) program that create the db file and populate it
with a simple insert.

Any help, links, suggests are appreciated.

--
Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/
"It's easier to invent the future than to predict it."  -- Alan Kay


Re: [sqlite] new uploads

2004-11-02 Thread Massimiliano
Dennis Cote wrote:
Richard,
I think there is a problem with the SQLite web site. The contrib link
(http://www.hwaci.com/sw/sqlite/contrib) on the main page is giving me a
file not found error from Hurricane Electric.
 

may is that the link you're looking for:
http://www.sqlite.org/contrib
Ciao
Massimiliano


[sqlite] Locking and concurrency

2004-06-16 Thread Massimiliano Zilio
Hi,
   I am using sqlite 2.8.5 and I'd like to know if I can have  a proces 
that reads(select) while a proces is writing (insert or update) in the 
same db.

I have read FAQ number 7  but it doesn't help me.
Thank you very much.
Bye Max
*
FAQ 7
**Can multiple applications or multiple instances of the same 
application access a single database file at the same time?*

   Multiple processes can have the same database open at the same time.
   Multiple processes can be doing a SELECT at the same time. But only
   one process can be making changes to the database at once.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]