Home
last modified time | relevance | path

Searched refs:dbfile (Results 1 – 4 of 4) sorted by relevance

/plugin/linkcheck/
Dhelperfunctions.php108 function linkcheck_db($dbfile){ argument
109 if(!is_string($dbfile)) return $dbfile;
110 if(!file_exists($dbfile)) {
111 if(!is_dir(dirname($dbfile))) mkdir(dirname($dbfile),0755);
112 $db = new SQLite3($dbfile);
115 else $db = new SQLite3($dbfile);
Dhelper.php11 private $dbfile=null; #use getdbfile() to access this. variable in helper_plugin_linkcheck
29 if(!isset($this->dbfile)){
30 if($this->getusecache()) $this->dbfile = metaFN('linkcheck_cache','.sqlite');
31 else $this->dbfile=false;
33 return $this->dbfile;
/plugin/database2/
Dadmin.php87 $db = $this->connect( $_REQUEST['dbfile'] );
191 …$dbSelectorLabel <input type="text" name="dbfile" id="dbfile" value="$_REQUEST[dbfile]" size="40" …
/plugin/sqlraw/
Dsyntax.php284 …function _sqlRaw__handleLink($url, &$renderer, $source, $startMarker, $tableNumber, $dbfile, $disa… argument
326 …$content =& $this->_scrapeTable(strtolower($url), $startMarker, $tableNumber, $dbfile, $disallow,…
415 …function _scrapeTable($url, $startMarker, $tableNumber, $dbfile, $specialChars, $specialReplace, $… argument
437 if ($dbfile != '') {
439 $fp = fopen($dbfile, 'w');