Hello!
If i have code like this
$dbSL = Zend_Db::factory('pdo_sqlite', array('dbname'=>':memory:'));
$dbSL->query('CREATE TABLE ...');
$dbSL->query('CREATE TABLE ...');
...
After that i whant take binary dump of this SQLite db
Thx in advice!