![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archiverecordset gets messed up by EOF/ reading in it ?
From: Dieter Beheydt <dieter.beheydt@leiedal.be>
Date: Fri Jul 15 2005 - 16:15:59 CEST
Seems like a $rs-> EOF messes up the record set ?
THIS WORKS !!
$dbMail = new COM("ADODB.Connection");
$sql="select * from email INNER JOIN klassement ON email.id =
$thebody=$rs->Fields["body"]->Value;
THIS PRINTS A ZERO ?????
$dbMail = new COM("ADODB.Connection");
$sql="select * from email INNER JOIN klassement ON email.id =
How is this possible???
Also I see now that in the first case, if I try to echo twice the same , it
echo $rs->Fields["body"]->Value; // prints the text
anyone ?
|