|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-04-09 05:00 UTC] joey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 22:00:01 2025 UTC |
sybase_query returns 1 instead of a link id when I run an action query. The following code reproduces the error: $con = sybase_connect("SYBASE", "user", "pass"); sybase_select_db("cope"); $qry = sybase_query("update ...", $con); echo sybase_affected_rows($qry); sybase_close($con); The update query works in isql. Here is my configure line: './configure' '--with-apache=../apache_1.3.19' '--with-sybase-ct=/opt/sybase' '--with-curl=../curl-7.7' '--with-mm=../mm-1.1.3' '--enable-bcmath' '--enable-calendar' '--enable-ctype' '--enable-exif' '--enable-ftp' '--enable-gd-imgstrttf' '--with-gd' '--enable-trans-sid' '--enable-shmop' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-wddx'