Sybase connection problems

admin

Administrator
Staff member
Hi all,

I'm using PHP version 4.0.4pl1 with a Sybase DB on Red Hat/Apache. I tried to connect to the database with the usual:
sybase_connect($host, $user, $password);
and got the following error: "Cannot find the requested character set in Syscharsets: name = 'cp437'"

So I added the character set parameter with:
sybase_connect($host, $user, $password, 'iso_1');
and now I get this error: "Wrong parameter count for sybase_connect() "

Is this a bug or am I doing something wrong? Any help would be very much appreciated!!
 
Back
Top