|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-02-12 09:31 UTC] sniper@php.net
[2006-02-20 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 23:00:01 2025 UTC |
Description: ------------ I couldn't fetch TIME-type data from views. The query processes correctly in IBExpert. Reproduce code: --------------- <?php $q = ibase_query('SELECT d.START_TIME FROM VW_SOME_VIEW'); $a = ibase_fetch_assoc($q); print_r($a['START_TIME']); echo "\n"; $q = ibase_query('SELECT d.START_TIME FROM VW_SOME_TABLE'); $a = ibase_fetch_assoc($q); print_r($a['START_TIME']); ?> Expected result: ---------------- 03:44 03:44 Actual result: -------------- -1 03:44