Maybe I am not reading the correct part of the manual, but I do not see any examples that show the methods I am currently using. For example, to get a Session record, I do the following:
/ Get session data /
function db_get_session($dbh, $sid) {
$stmnt = "SELECT * FROM dbo.SESSION WHERE SES_ID = '" . $sid . "'";
$rs = $dbh->Execute($stmnt);
return $rs;
}
Elsewhere, in my code, I use
$rs->MoveNext();
but it is not shown (or I cannot find it).
Todd