summaryrefslogtreecommitdiff
path: root/program/include/rcube_mysql.inc
blob: bcffe5e2b159cf0a0e9b93b3ac760159b4fc722c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php

/*
 +-----------------------------------------------------------------------+
 | program/include/rcube_mysql.inc                                       |
 |                                                                       |
 | This file is part of the RoundCube Webmail client                     |
 | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
 | All rights reserved.                                                  |
 |                                                                       |
 | PURPOSE:                                                              |
 |   MySQL wrapper class that implements PHP MySQL functions             |
 |   See http://www.php.net/manual/en/ref.mysql.php                      |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
 +-----------------------------------------------------------------------+

 $Id$

*/


class rcube_mysql
  {
  var $db_link;
  var $db_host = 'localhost';
  var $db_name = '';
  var $db_user = '';
  var $db_pass = '';
  var $a_query_results = array('dummy');
  var $last_res_id = 0;


  // PHP 5 constructor
  function __construct($db_name='', $user='', $pass='', $host='localhost')
    {
    $this->db_host = $host;
    $this->db_name = $db_name;
    $this->db_user = $user;
    $this->db_pass = $pass;
    }

  // PHP 4 compatibility
  function rcube_mysql($db_name='', $user='', $pass='', $host='localhost')
    {
    $this->__construct($db_name, $user, $pass, $host);
    }


  function connect()
    {
    $this->db_link = mysql_connect($this->db_host, $this->db_user, $this->db_pass);
      
    if (!$this->db_link)
      {
      raise_error(array('code' => 500,
                        'type' => 'mysql',
                        'line' => __LINE__,
                        'file' => __FILE__,
                        'message' => "Can't connect to database"), TRUE, FALSE);
      return FALSE;
      }
    
    return TRUE;
    }


  function select_db($name)
    {
    $this->db_name = $name;

    if ($this->db_link)
      mysql_select_db($name, $this->db_link);
    }


  function query($query)
    {
    // establish a connection
    if (!$this->db_link)
      {
      if (!$this->connect())
        return FALSE;
      }

    $sql_result = mysql_db_query($this->db_name, $query, $this->db_link);
    return $this->_add_result($sql_result, $query);
    }


  function num_rows($res_id=NULL)
    {
    if (!$this->db_link)
      return FALSE;

    $sql_result = $this->_get_result($res_id);
    
    if ($sql_result)    
      return mysql_num_rows($sql_result);
    else
      return FALSE;
    }


  function affected_rows()
    {
    if (!$this->db_link)
      return FALSE;

    return mysql_affected_rows($this->db_link);
    }


  function insert_id()
    {
    if (!$this->db_link)
      return FALSE;

    return mysql_insert_id($this->db_link);
    }


  function fetch_assoc($res_id=NULL)
    {
    $sql_result = $this->_get_result($res_id);
    
    if ($sql_result)
      return mysql_fetch_assoc($sql_result);
    else
      return FALSE;
    }


  function seek($res_id=NULL, $row=0)
    {
    $sql_result = $this->_get_result($res_id);
    
    if ($sql_result)
      return mysql_data_seek($sql_result, $row);
    else
      return FALSE;
    }



  function _add_result($res, $query)
    {
    // sql error occured
    if ($res===FALSE)
      {
      $sql_error = mysql_error($this->db_link);
      raise_error(array('code' => 500,
                        'type' => 'mysql',
                        'line' => __LINE__,
                        'file' => __FILE__,
                        'message' => $sql_error."; QUERY: ".preg_replace('/[\r\n]+\s*/', ' ', $query)), TRUE, FALSE);
      
      return FALSE;
      }
    else
      {
      $res_id = sizeof($this->a_query_results);
      $this->a_query_results[$res_id] = $res;
      $this->last_res_id = $res_id;

      return $res_id;
      }
    }


  function _get_result($res_id)
    {
    if ($res_id===NULL)
      $res_id = $this->last_res_id;

    if ($res_id && isset($this->a_query_results[$res_id]))
      return $this->a_query_results[$res_id];
    else
      return FALSE;
    }

  }


?>