| Autor | Mensaje |
|---|---|
|
Escrito en: 02. 06. 2004 [12:19]
|
|
|
ncesar@lunix.com.ar
Nicolas D. Cesar
Autor del tema
registrado desde: 31.12.1969
Entradas: 0
|
I think I discover a BUG. Is there a bugzilla for the project o similar?? (using getHash() sent in prior messsage) BUG: $recs =3D $db->query($search,true); echo "got ",count($recs), " records</br>\n"; foreach ($recs as $r) { echo "<pre>---\n"; print_r($r->getHash()); echo "\n---</pre>"; } die(); gets count($recs) just fine but the result is all the first record just=20 repeated.... This is my 'work arround': $recs =3D $db->query($search,false); echo "got ",count($recs), " records</br>\n"; foreach ($recs as $r) { echo "<pre>---\n"; $t =3D& $db->read($r); print_r($t->getHash()); echo "\n---</pre>"; } die(); But code gets uglier! =20 =2D-=20 Nicol=E1s D. C=E9sar <ncesar@lunix.com.ar> Lunix [ Soluciones en GNU/Linux ] http://www.lunix.com.ar ------------------------------------------ Posted to Phorum via PhorumMail |
|
Escrito en: 03. 06. 2004 [04:49]
|
|
|
paul@malete.org
Klaus Ripke
registrado desde: 31.12.1969
Entradas: 0
|
On Wednesday 02 June 2004 19:19, Nicolas D. Cesar wrote: > Is there a bugzilla for the project o similar?? please use the Wiki http://wiki.openisis.org/i/view/Php/WebHome to post patches, demos and alternatives ------------------------------------------ Posted to Phorum via PhorumMail |
|
Escrito en: 04. 07. 2004 [19:51]
|
|
|
lieh@telesat.com.co
Luis Ignacio Estrada-Hoyos
registrado desde: 31.12.1969
Entradas: 0
|
Hi. I’m doing a query about a thematic coffee database. The database has 29851 records. The query term that I am using is COFFEE. The answer that I should have is about 13078 records, but only the LAST 523 RECORDS are returned. ------------------------------------------ Posted to Phorum via PhorumMail |