db_oci8.inc
8.86 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<?php
/*
* Oracle/OCI8 accessor based on Session Management for PHP3
*
* (C) Copyright 1999-2000 Stefan Sels phplib@sels.com
*
* based on db_oracle.inc by Luis Francisco Gonzalez Hernandez
* contains metadata() from db_oracle.inc 1.10
*
* $Id$
*
*/
class DB_Sql {
var $Debug = 0;
var $sqoe = 1; // sqoe= show query on error
var $Database = "";
var $User = "";
var $Password = "";
var $Link_ID = 0;
var $Record = array();
var $Row;
var $Parse;
var $Error = "";
/* public: constructor */
function DB_Sql($query = "") {
$this->query($query);
}
function connect() {
if ( 0 == $this->Link_ID ) {
if($this->Debug) {
printf("<br>Connecting to $this->Database...<br>\n");
}
$this->Link_ID=OCIplogon
("$this->User","$this->Password","$this->Database");
if (!$this->Link_ID) {
$this->halt("Link-ID == false " .
"($this->Link_ID), OCILogon failed");
}
if($this->Debug) {
printf("<br>Obtained the Link_ID: $this->Link_ID<br>\n");
}
}
}
function query($Query_String) {
/* No empty queries, please, since PHP4 chokes on them. */
if ($Query_String == "")
/* The empty query string is passed on from the constructor,
* when calling the class without a query, e.g. in situations
* like these: '$db = new DB_Sql_Subclass;'
*/
return 0;
$this->connect();
$this->Parse=OCIParse($this->Link_ID,$Query_String);
if(!$this->Parse) {
$this->Error=OCIError($this->Parse);
} else { OCIExecute($this->Parse);
$this->Error=OCIError($this->Parse);
}
$this->Row=0;
if($this->Debug) {
printf("Debug: query = %s<br>\n", $Query_String);
}
if ($this->Error["code"]!=1403 && $this->Error["code"]!=0 && $this->sqoe)
echo "<BR><FONT color=red><B>".$this->Error["message"]."<BR>Query :\"$Query_String\"</B></FONT>";
return $this->Parse;
}
function next_record() {
if(0 == OCIFetchInto($this->Parse,$result,OCI_ASSOC+OCI_RETURN_NULLS)) {
if ($this->Debug) {
printf("<br>ID: %d,Rows: %d<br>\n",
$this->Link_ID,$this->num_rows());
}
$this->Row +=1;
$errno=OCIError($this->Parse);
if(1403 == $errno) { # 1043 means no more records found
$this->Error="";
$this->disconnect();
$stat=0;
} else {
$this->Error=OCIError($this->Parse);
if($this->Debug) {
printf("<br>Error: %s",
$this->Error["message"]);
}
$stat=0;
}
} else {
for($ix=1;$ix<=OCINumcols($this->Parse);$ix++) {
$col=strtoupper(OCIColumnname($this->Parse,$ix));
$colreturn=strtolower($col);
$this->Record[ "$colreturn" ] = $result["$col"];
if($this->Debug) echo"<b>[$col]</b>:".$result["$col"]."<br>\n";
}
$stat=1;
}
return $stat;
}
function seek($pos) {
$this->Row=$pos;
}
function metadata($table,$full=false) {
$count = 0;
$id = 0;
$res = array();
/*
* Due to compatibility problems with Table we changed the behavior
* of metadata();
* depending on $full, metadata returns the following values:
*
* - full is false (default):
* $result[]:
* [0]["table"] table name
* [0]["name"] field name
* [0]["type"] field type
* [0]["len"] field length
* [0]["flags"] field flags ("NOT NULL", "INDEX")
* [0]["format"] precision and scale of number (eg. "10,2") or empty
* [0]["index"] name of index (if has one)
* [0]["chars"] number of chars (if any char-type)
*
* - full is true
* $result[]:
* ["num_fields"] number of metadata records
* [0]["table"] table name
* [0]["name"] field name
* [0]["type"] field type
* [0]["len"] field length
* [0]["flags"] field flags ("NOT NULL", "INDEX")
* [0]["format"] precision and scale of number (eg. "10,2") or empty
* [0]["index"] name of index (if has one)
* [0]["chars"] number of chars (if any char-type)
* ["meta"][field name] index of field named "field name"
* The last one is used, if you have a field name, but no index.
* Test: if (isset($result['meta']['myfield'])) {} ...
*/
$this->connect();
## This is a RIGHT OUTER JOIN: "(+)", if you want to see, what
## this query results try the following:
## $table = new Table; $db = new my_DB_Sql; # you have to make
## # your own class
## $table->show_results($db->query(see query vvvvvv))
##
$this->query("SELECT T.table_name,T.column_name,T.data_type,".
"T.data_length,T.data_precision,T.data_scale,T.nullable,".
"T.char_col_decl_length,I.index_name".
" FROM ALL_TAB_COLUMNS T,ALL_IND_COLUMNS I".
" WHERE T.column_name=I.column_name (+)".
" AND T.table_name=I.table_name (+)".
" AND T.table_name=UPPER('$table') ORDER BY T.column_id");
$i=0;
while ($this->next_record()) {
$res[$i]["table"] = $this->Record[table_name];
$res[$i]["name"] = strtolower($this->Record[column_name]);
$res[$i]["type"] = $this->Record[data_type];
$res[$i]["len"] = $this->Record[data_length];
if ($this->Record[index_name]) $res[$i]["flags"] = "INDEX ";
$res[$i]["flags"] .= ( $this->Record[nullable] == 'N') ? '' : 'NOT NULL';
$res[$i]["format"]= (int)$this->Record[data_precision].",".
(int)$this->Record[data_scale];
if ("0,0"==$res[$i]["format"]) $res[$i]["format"]='';
$res[$i]["index"] = $this->Record[index_name];
$res[$i]["chars"] = $this->Record[char_col_decl_length];
if ($full) {
$j=$res[$i]["name"];
$res["meta"][$j] = $i;
$res["meta"][strtoupper($j)] = $i;
}
if ($full) $res["meta"][$res[$i]["name"]] = $i;
$i++;
}
if ($full) $res["num_fields"]=$i;
# $this->disconnect();
return $res;
}
function affected_rows() {
return $this->num_rows();
}
function num_rows() {
return OCIrowcount($this->Parse);
}
function num_fields() {
return OCINumcols($this->Parse);
}
function nf() {
return $this->num_rows();
}
function np() {
print $this->num_rows();
}
function f($Name) {
if (is_object($this->Record[$Name]))
{
return $this->Record[$Name]->load();
} else
{
return $this->Record[$Name];
}
}
function p($Name) {
print $this->f($Name);
}
function nextid($seqname)
{
$this->connect();
$Query_ID=@ociparse($this->Link_ID,"SELECT $seqname.NEXTVAL FROM DUAL");
if(!@ociexecute($Query_ID))
{
$this->Error=@OCIError($Query_ID);
if($this->Error["code"]==2289)
{
$Query_ID=ociparse($this->Link_ID,"CREATE SEQUENCE $seqname");
if(!ociexecute($Query_ID))
{
$this->Error=OCIError($Query_ID);
$this->halt("<BR> nextid() function - unable to create sequence<br>".$this->Error["message"]);
} else
{
$Query_ID=ociparse($this->Link_ID,"SELECT $seqname.NEXTVAL FROM DUAL");
ociexecute($Query_ID);
}
}
}
if (ocifetch($Query_ID))
{
$next_id = ociresult($Query_ID,"NEXTVAL");
} else
{
$next_id = 0;
}
ocifreestatement($Query_ID);
return $next_id;
}
function disconnect() {
if($this->Debug) {
printf("Disconnecting...<br>\n");
}
OCILogoff($this->Link_ID);
}
function halt($msg) {
printf("</td></tr></table><b>Database error:</b> %s<br>\n", $msg);
printf("<b>ORACLE Error</b>: %s<br>\n",
$this->Error["message"]);
die("Session halted.");
}
function lock($table, $mode = "write") {
$this->connect();
if ($mode == "write") {
$Parse=OCIParse($this->Link_ID,"lock table $table in row exclusive mode");
OCIExecute($Parse);
} else {
$result = 1;
}
return $result;
}
function unlock() {
return $this->query("commit");
}
function table_names() {
$this->connect();
$this->query("
SELECT table_name,tablespace_name
FROM user_tables");
$i=0;
while ($this->next_record())
{
$info[$i]["table_name"] =$this->Record["table_name"];
$info[$i]["tablespace_name"]=$this->Record["tablespace_name"];
$i++;
}
return $info;
}
function add_specialcharacters($query)
{
return str_replace("'","''",$query);
}
function split_specialcharacters($query)
{
return str_replace("''","'",$query);
}
}
?>