06-26-2014, 01:02 PM
[eluser]Pavellicus[/eluser]
Hello,
i have a little question :
i need to create a library to work on sqlite file .
i need to upload the *.sqlite and then open it and work on it .
is possible do something like that :
Hello,
i have a little question :
i need to create a library to work on sqlite file .
i need to upload the *.sqlite and then open it and work on it .
is possible do something like that :
Code:
class myLibrary extends sqlite3{
public function __construct()
{
parent::__construct();
$this->open('blabla.sqlite'); // function of sqlite3 library
}
}