David Gelt <[EMAIL PROTECTED]> wrote: > > The application is ... a synchronuous, single threaded application.
Yes! Way to go! > > In order to keep all these database connections open, I defined > an array (simple list) but when I am trying to allocate memory > for sqlite3 type I get an error complaining about sizeof(sqlite3). You'll be storing a pointer to the connection, so you want to use sizeof(sqlite3*); -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------