|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-26 08:50 UTC] joey@php.net
[2001-06-26 17:04 UTC] joey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 17:00:01 2025 UTC |
we often get intermitent charset problems on database operations (onto sybase ase 11.0.3.3-6 using ctlib) and we are tring to find out an way to solve this. reading the php online doc, we discover that there is an parameter in the sybase_conection () function to force a charset for de client connection. unfortunately this does not work, as shown below: Warning: Wrong parameter count for sybase_connect() in /home/oab/public_html/amaral_testes/lixo/sybase-fetch.php on line "x". the code that generate this parse error was this: <?php ... $id_conn = sybase_connect ('SYBASE','sa','', 'iso_1'); ... ?> is this an BUG ?