There was an error while loading. Please reload this page.
1 parent b8b96e7 commit 857157fCopy full SHA for 857157f
1 file changed
oracle8_9/ez_sql_oracle8_9.php
@@ -235,11 +235,11 @@ function query($query)
235
// Fetch the column meta data
236
for ( $i = 1; $i <= $num_cols; $i++ )
237
{
238
- # Check is_object to rid the following PHP 4.5+ error
239
- # PHP Warning: Creating default object from empty value in ez_sql_oracle8_9.php on line xxx
240
- if ( !is_object($this->col_info) ) {
241
- $this->col_info[] = new stdClass;
242
- }
+ # Check is_object to rid the following PHP 4.5+ error
+ # PHP Warning: Creating default object from empty value in ez_sql_oracle8_9.php on line xxx
+ if ( !is_object($this->col_info) ) {
+ $this->col_info[] = new stdClass;
+ }
243
244
$this->col_info[($i-1)]->name = @OCIColumnName($stmt,$i);
245
$this->col_info[($i-1)]->type = @OCIColumnType($stmt,$i);
0 commit comments