Jump to content

PHP-PDB limit on number of records


Recommended Posts

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.