johnf wrote: > On Tuesday 13 February 2007 15:21, Uwe Grauer wrote: >> Running different functionality or just forms in different transactions >> isn't esoteric usage at all! > > Actually that's a good question. I believe in the VFP world and using an > ODBC/ADO as the connection - you a connection pool. Is that true for all > the database drivers we use with Dabo?
The python db api does not provide pooling. For dabo, a connection name (see dApp) is unique. So dabo doesn't support connection pools by the same connection name. You can mimic it by using different connection names (hard to do generic because the names should be predefined in the cnxml file) or by providing a dConnectInfo object for dConnection() yourself. _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
