ID: 30898 Updated by: [EMAIL PROTECTED] Reported By: jap1968 at yahoo dot es -Status: Feedback +Status: No Feedback Bug Type: Sybase (dblib) related Operating System: Linux (RedHat 9) PHP Version: 4.3.8 New Comment:
No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. Previous Comments: ------------------------------------------------------------------------ [2004-12-22 05:42:08] [EMAIL PROTECTED] What is the freetds version you're using? And do read this: http://lists.ibiblio.org/pipermail/freetds/2004q3/016779.html It would suggest that this is not any bug anywhere but just a configuration issue.. ------------------------------------------------------------------------ [2004-11-25 17:36:16] jap1968 at yahoo dot es "Expected" and "Actual" are interchanged. Sorry for the mistake! ------------------------------------------------------------------------ [2004-11-25 17:33:54] jap1968 at yahoo dot es Description: ------------ When using a LC_TIME locale which do represent time in 0..24h manner in spite of using AM/PM, wrong results are obtained. Results are always in the range 0..11, so if the time corresponds to a PM hour, the returned result is wrong. It does not correspond with the real value stored in the database! Reproduce code: --------------- // Asking a MS_SQLServer through FreeTDS + Sybase functions $linkBD = sybase_connect("SGBD", "user", "pass"); sybase_select_db("BD", $linkBD); $query = "select fecha from table"; /* RIGHT */ setlocale (LC_TIME, "en_US"); // Returns correct time $res = sybase_query($query, $linkBD); if ($fila = sybase_fetch_array($res)) { $fecha = $fila['fecha']; echo 'en_US'.$fecha; } /* WRONG */ setlocale (LC_TIME, "es_ES"); // Returns wrong time $res = sybase_query($query, $linkBD); if ($fila = sybase_fetch_array($res)) { $fecha = $fila['fecha']; echo 'es_ES'.$fecha; } sybase_close($linkBD); Expected result: ---------------- en_US:NOV 25 2004 01:00PM es_ES:nov 25 2004 01:00 Actual result: -------------- en_US:NOV 25 2004 01:00PM es_ES:nov 25 2004 13:00 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30898&edit=1