Welcome Guest, Not a member yet? Register   Sign In
How to connect the startup database library
#3

In CI4, you don't autoload things in the same way as previous versions, since we now have a PSR4-compliant autoloader built in. As per the docs, whenever you need a database connection, you simply grab it:

Code:
$db = \Config\Database::connect();

You can do that in your controller constructor, if you like to have it available for every method. Or in a BaseController that your controllers extend from.
Reply


Messages In This Thread
RE: How to connect the startup database library - by kilishan - 02-02-2017, 09:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB