|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-25 09:24 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 04:00:02 2025 UTC |
class dbsql { function selectquery() { /*in $this->qryresult the problem start. it displays illegal operation and will be shutdown ...*/ $this->qryresult=ibase_query($this->dbh,$this->dbsqlstmt); if($this->qryresult) { $this->count=0; //initializes back to zero while($rec_qry=ibase_fetch_object($this->qryresult)) { $this->rec_result[$this->count++]= $rec_qry; } return true; } return false; }