class/adodb.php 1 location
|
@@ 659-663 (lines=5) @@
|
656 |
|
unset($this->aMetaColumn[$table][$c]); |
657 |
|
} |
658 |
|
// Fix: sybase db display timestamp column as varbinary |
659 |
|
if ($this->IsDbSybase()) { |
660 |
|
$s = $this->FindColTs($table); |
661 |
|
if (!empty($s)) |
662 |
|
$this->aMetaColumn[$table][$s]->type = 'timestamp'; |
663 |
|
} |
664 |
|
//print_r($this->aMetaColumn); |
665 |
|
} |
666 |
|
return $this->aMetaColumn[$table]; |
src/Fwlib/Bridge/Adodb.php 1 location
|
@@ 764-769 (lines=6) @@
|
761 |
|
|
762 |
|
// @codeCoverageIgnoreStart |
763 |
|
// Fix sybase display timestamp column as varbinary |
764 |
|
if ($this->isDbSybase()) { |
765 |
|
$s = $this->getMetaTimestamp($table); |
766 |
|
if (!empty($s)) { |
767 |
|
$this->metaColumn[$table][$s]->type = 'timestamp'; |
768 |
|
} |
769 |
|
} |
770 |
|
// @codeCoverageIgnoreEnd |
771 |
|
} |
772 |
|
|