Re: Pyro and sqlite3 problem

2007-12-02 Thread Sébastien Ramage
I'm trying to build a client/server app the server use a sqlite3 database to store differents things the client ask the server to get value or store new entries in the database. The problem is that Pyro create a new thread for each client at first time I create the connection to database at server

Re: Pyro and sqlite3 problem

2007-12-02 Thread Sébastien Ramage
> Off hand -- ensure that each remote access runs the entire sequence > of "connect, cursor, execute, fetch, cursor-close, connection-close" > rather than trying to, say, create a cursor in one access and then use > that cursor on a second access... > > Or maybe create one long-run