santiagotor Posted April 9, 2007 Share Posted April 9, 2007 PLEASE ANY HELP WOULD BE APRICIATED Is there a limit on the amount of times you can call a class? I am using the following code to creat a PDB Database for my palm, using PHP-PDB (http://php-pdb.sourceforge.net/). If the routing loops less than 500 it works fine, but if I loop more then 500 it just hangs within the loop.... The (i) variable detemines the amount fo records to be created........ The code is: include 'php-pdb.inc'; $pdb = new PalmDB("data", "7491", "CRMData"); for($i=0;$i<=800;$i++) { $toload="A".$i; $pdb->AppendString($toload); $pdb->AppendInt8(0); $pdb->RecordAttrs[$pdb->GoToRecord()] |= PDB_RECORD_ATTRIB_DIRTY; $pdb->GoToRecord('+1'); echo $toload."<br>"; } $pdb->Attributes |= PDB_ATTRIB_BACKUP; $pdb->DownloadPDB('Data.pdb'); THanks Santiago Quote Link to comment https://forums.phpfreaks.com/topic/46278-php-pdb-limit-on-number-of-records/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.