Adding check_isso_field() calls all over the place
[isso.git] / db_postgresql.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Iris Studios Shared Object Framework [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 /**
23 * PostgreSQL Database Abstraction Layer
24 * db_postgresql.php
25 *
26 * @package ISSO
27 */
28
29 $this->load('db', null);
30
31 /**
32 * PostgreSQL Database Abstraction Layer
33 *
34 * This framework is a function wrapper for PostgresQL functions so we can have
35 * better error reporting and query reporting.
36 *
37 * @author Iris Studios, Inc.
38 * @copyright Copyright ©2002 - [#]year[#], Iris Studios, Inc.
39 * @version $Revision$
40 * @package ISSO
41 *
42 */
43 class DB_PostgreSQL extends DB_Abstract
44 {
45 /**
46 * Command mapping list
47 * @var array
48 * @access private
49 */
50 var $commands = array(
51 'pconnect' => '$this->command_pg_pconnect',
52 'connect' => '$this->command_pg_connect',
53 'query' => 'pg_query',
54 'error_num' => '$this->command_error_num',
55 'error_str' => '$this->command_error_str',
56 'escape_string' => '$this->command_pg_escape_string',
57 'fetch_assoc' => 'pg_fetch_assoc',
58 'fetch_object' => 'pg_fetch_object',
59 'free_result' => 'pg_free_result',
60 'insert_id' => '%link', // how do we support this...?
61 'num_rows' => 'pg_num_rows',
62 'affected_rows' => 'pg_affected_rows'
63 );
64
65 /**
66 * Port number to connect to
67 * @var integer
68 * @access private
69 */
70 var $port = 5432;
71
72 /**
73 * Fields array that is used in this module
74 * @var array
75 * @access private
76 */
77 var $fields = array(
78 'port' => array(REQ_NO, null, true)
79 );
80
81 // ###################################################################
82 /**
83 * Constructor
84 */
85 function __construct(&$registry)
86 {
87 parent::__construct($registry);
88 }
89
90 // ###################################################################
91 /**
92 * (PHP 4) Constructor
93 */
94 function DB_PostgreSQL(&$registry)
95 {
96 $this->__construct($registry);
97 }
98
99 // ###################################################################
100 /**
101 * Sets an ISSO field
102 *
103 * @access public
104 *
105 * @param string Field name
106 * @param mixed Value of the field
107 */
108 function set($name, $value)
109 {
110 $this->registry->do_set($name, $value, 'db_postgresql');
111 }
112
113 // ###################################################################
114 /**
115 * Wrapper: pg_connect
116 *
117 * @access protected
118 *
119 * @param string Server name
120 * @param string User name
121 * @param string Password
122 * @param string Database
123 *
124 * @return integer DB-Link
125 */
126 function command_pg_connect($server, $user, $password, $database)
127 {
128 $this->registry->check_isso_fields(get_class($this));
129 return pg_connect("host='$server' port={$this->port} user='$user' password='$password' dbname='$database'");
130 }
131
132 // ###################################################################
133 /**
134 * Wrapper: pg_pconnect
135 *
136 * @access protected
137 *
138 * @param string Server name
139 * @param string User name
140 * @param string Password
141 * @param string Database
142 *
143 * @return integer DB-Link
144 */
145 function command_pg_pconnect($server, $user, $password, $database)
146 {
147 $this->registry->check_isso_fields(get_class($this));
148 return pg_pconnect("host='$server' port={$this->port} user='$user' password='$password' dbname='$database'");
149 }
150
151 // ###################################################################
152 /**
153 * Wrapper: pg_escape_string
154 *
155 * @access protected
156 *
157 * @param integer DB-Link (unused)
158 * @param string Raw string
159 *
160 * @return string Escaped string
161 */
162 function command_pg_escape_string($link, $string)
163 {
164 return pg_escape_string($string);
165 }
166
167 // ###################################################################
168 /**
169 * Wrapper/no support: error string
170 *
171 * @access protected
172 *
173 * @param integer DB-Link
174 *
175 * @return string Error string
176 */
177 function command_error_str($link)
178 {
179 if ($this->result)
180 {
181 return pg_result_error($this->result);
182 }
183
184 return pg_last_error($link);
185 }
186
187 // ###################################################################
188 /**
189 * Not supported: error numbers
190 *
191 * @access protected
192 *
193 * @param integer DB-Link
194 *
195 * @return integer Returns -1 always
196 */
197 function command_error_num($link)
198 {
199 return -1;
200 }
201
202 // ###################################################################
203 /**
204 * Overload: insert_id
205 *
206 * @access public
207 *
208 * @param integer Result
209 * @param string PostgreSQL sequence
210 *
211 * @return integer Insert ID
212 */
213 function insert_id($result, $sequence)
214 {
215 $temp = $this->query("SELECT currval($sequence) AS auto_inc");
216 //$temp = call_user_func($this->commands['query'], "SELECT currval($table_col)");
217 var_dump( $temp);
218 print_r($this->fetch_array($temp));
219 }
220 }
221
222 /*=====================================================================*\
223 || ###################################################################
224 || # $HeadURL$
225 || # $Id$
226 || ###################################################################
227 \*=====================================================================*/
228 ?>