Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.5.0b4

Bug #6599 sqlite:///:memory: trys to open file
Submitted: 2006-01-26 17:18 UTC
From: coz at metamule dot com Assigned: lsmith
Status: Closed Package: MDB2_Driver_sqlite
PHP Version: 5.0.5 OS: SunOS 5.8 Generic_11
Roadmaps: (Not assigned)    
Subscription  


 [2006-01-26 17:18 UTC] coz at metamule dot com
Description: ------------ Using sqlite:///:memory: doesn't open a db in memory, it tries to open a real file. Test script: --------------- function sqll_cache(&$dataArray){ $dsn = "sqlite:///:memory:"; $options = NULL; $SQDB = DB::connect($dsn,$options); $SQDB->query("create table data (data varchar(32))"); if(!$set){ $sth = $SQDB->prepare("insert into data (data) values (?)"); $set = 1; } if(is_array($dataArray)){ foreach($dataArray as $x){ $SQDB->execute($sth,array($x)); } } $SQDB->query("create index data_idx on data (data)"); return $SQDB; } Expected result: ---------------- Should take an array of data and put it in a sqlite table in memory Actual result: -------------- Warning: touch() [function.touch]: Unable to create file :memory: because Permission denied in /usr/local/lib/php/DB/sqlite.php on line 117

Comments

 [2006-03-11 10:22 UTC] lsmith
DB is in maintenance mode, new features should go into MDB2 and we can consider then if its safe to backport this.
 [2006-03-17 08:47 UTC] lsmith
This bug has been fixed in CVS. If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET). If this was a problem with the pear.php.net website, the change should be live shortly. Otherwise, the fix will appear in the package's next release. Thank you for the report and for helping us make PEAR better. fixed in MDB2 and DB