123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <?php
- require_once dirname(__FILE__).'/class.recordset.php';
- class connection
- {
- var $con_id;
- var $error;
- var $errno;
-
-
-
-
- function connection($user, $pwd , $alias='', $dbname)
- {
- $this->error = '';
-
- $this->con_id = @mysql_connect($alias, $user, $pwd);
-
- if (!$this->con_id) {
- $this->setError();
- } else {
- $this->database($dbname);
- }
- }
-
-
- function database($dbname)
- {
- $db = @mysql_select_db($dbname);
- if(!$db) {
- $this->setError();
- return false;
- } else {
- return true;
- }
- }
-
-
- function close()
- {
- if ($this->con_id) {
- mysql_close($this->con_id);
- return true;
- } else {
- return false;
- }
- }
-
-
- function select($query,$class='recordset')
- {
- if (!$this->con_id) {
- return false;
- }
-
- if ($class == '' || !class_exists($class)) {
- $class = 'recordset';
- }
-
- $cur = mysql_unbuffered_query($query, $this->con_id);
-
- if ($cur)
- {
-
- $i = 0;
- $arryRes = array();
- while($res = mysql_fetch_row($cur))
- {
- for($j=0; $j<count($res); $j++)
- {
- $arryRes[$i][strtolower(mysql_field_name($cur, $j))] = $res[$j];
- }
- $i++;
- }
-
- return new $class($arryRes);
- }
- else
- {
- $this->setError();
- return false;
- }
- }
-
-
- function execute($query)
- {
- if (!$this->con_id) {
- return false;
- }
-
- $cur = mysql_query($query, $this->con_id);
-
- if (!$cur) {
- $this->setError();
- return false;
- } else {
- return true;
- }
-
- }
-
-
- function getLastID()
- {
- if ($this->con_id) {
- return mysql_insert_id($this->con_id);
- } else {
- return false;
- }
- }
-
-
- function rowCount()
- {
- if ($this->con_id) {
- return mysql_affected_rows($this->con_id);
- } else {
- return false;
- }
- }
-
-
- function setError()
- {
- if ($this->con_id) {
- $this->error = mysql_error($this->con_id);
- $this->errno = mysql_errno($this->con_id);
- } else {
- $this->error = (mysql_error() !== false) ? mysql_error() : 'Unknown error';
- $this->errno = (mysql_errno() !== false) ? mysql_errno() : 0;
- }
- }
-
-
- function error()
- {
- if ($this->error != '') {
- return $this->errno.' - '.$this->error;
- } else {
- return false;
- }
- }
-
-
- function escapeStr($str)
- {
- return mysql_escape_string($str);
- }
- }
- ?>
|