zeodragonzord Posted April 18, 2010 Share Posted April 18, 2010 I'm writing an application with many classes. Some of these classes interact with MySQL with methods doing specific things like inserting, updating, etc. I use Pear MDB2. Where is the best place to generate a MDB2 object? Should I: create the MDB2 object in the constructor and assign it into the object variable to be used in each of its methods create the MDB2 object inside each method create the MDB2 object and pass it into the object in its constructor create the MDB2 object in a config file and use the global keyword to access it in each object I originally had a singleton used inside each method but I don't like the idea that the singleton database connector is global. Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/198959-where-to-generate-database-connection-within-classes/ Share on other sites More sharing options...
ignace Posted April 19, 2010 Share Posted April 19, 2010 create the MDB2 object and pass it into the object in its constructor Quote Link to comment https://forums.phpfreaks.com/topic/198959-where-to-generate-database-connection-within-classes/#findComment-1044444 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.