| 
<?phpuse eftec\DaoOne;
 
 include "../vendor/autoload.php";
 
 
 // connecting to database sakila at 127.0.0.1 with user root and password abc.123
 $dao=new DaoOne("127.0.0.1","root","abc.123","sakila","");
 try {
 echo "<h1>connection. The instance 127.0.0.1, base:sakile  user:root and password:abc.123 must exists</h1>";
 $dao->connect();
 } catch (Exception $ex) {
 
 }
 |