|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2000-07-24 23:07 UTC] waldschrott@php.net
  [2000-07-25 11:05 UTC] torsten dot weigel at dresdner-bank dot com
  [2000-09-04 20:30 UTC] sniper@php.net
  [2000-09-08 06:56 UTC] torsten dot weigel at dresdner-bank dot com
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 21:00:02 2025 UTC | 
system decription: - SUN E450 4xUltraSparc II 250 MHz, 1GB memory - Solaris 2.6 (all recomended patches) - Sybase Adaptive Server Enterprise/11.9.2/1031/P/Sun_svr4/OS 5.5.1/FBO/Fri Aug 14 06:26:45 1998 php configuration line: ./configure \ --with-apxs=/opt/apache/bin/apxs \ --with-config-file-path=/opt/apache/conf \ --with-mm=../../mm-1.1.2/mm-binary \ --without-mysql \ --with-sybase=/opt/db/sybase/sybase11.9.2 \ --with-pdflib=/usr/local/lib \ --with-gd=../addons/gd-1.8.3 \ --with-jpeg-dir=/usr/local \ --with-xpm-dir=/usr/local \ --with-ttf=/usr/local \ --with-mhash=/usr/local \ --enable-libgcc \ --enable-track-vars \ --enable-url-includes sample script: <?php $db_id=sybase_connect("DSCOMPONENTS_DEV", "", ""); if(!$db_id) { print ("Connect to database fails<BR>"); } else { print ("Connection established<BR>"); $rc=sybase_select_db("master"); $db_result=sybase_query("select * from sysusers order by name"); $selected_rows=sybase_num_rows($db_result); print ("Selected Rows= $selected_rows<BR>"); /*Funny stuff !! Activate the next line and fix the problem*/ /*$rc=sybase_data_seek($db_result,0);*/ while ($db_row = sybase_fetch_row($db_result)) { print (implode($db_row, " : ")); print ("<BR>"); } } ?> description: The sample script loses usually the second result line. If the error does not turn up in the first time, make a reload for the same page an then you got it. It is not relevant how to order the result, everytime the second line is empty. The line with the sybase_data_seek-statement fixes the problem. Regards Torsten