[nextBBS]
Warning: require_once(adodb/adodb.inc.php) [function.require-once]: failed to open stream: No such file or directory in /home/kemkarn/public_html/dbdriver.php (443)
at adodbdriver::adodbdriver() (/home/kemkarn/public_html/dbdriver.php:443)
at adodbdriver()() (/home/kemkarn/public_html/dbdriver.php:25)
at factoryGetDriver("adodb") (/home/kemkarn/public_html/index.php:156)
Source Code:
434 $db = &$this->db; // Use current
435 return $db->affectedRows();
436 }
437}
438
439class adodbdriver extends basicdbdriver
440{
441 function adodbdriver()
442 {
443 require_once "adodb/adodb.inc.php";
444
445 $this->total_queries = 0;
446 $this->total_time = 0;
447 $this->queries = array();
448 $this->report_next_error = false;
449 set_magic_quotes_runtime(0);
450 }
451
452 /**
453 * Connect to a SQL Database.
Variables: