I have put the following:


Code:
 

$ConnDSN = "DRIVER={MySQL ODBC 3.51 Driver};SERVER=localhost;DATABASE=ncives;USER=test;PASSWORD=test;OPTION=3;"


$sql = 'SELECT * FROM workst'
? $sql
sleep 3


$recordset = DBCommand($ConnDSN,$sql)

$connection = createobject("adodb.connection")
?$recordset

$= $connection.open($ConnDSN)

? @SERROR




? 'Error = '+@ERROR+' - '+@SERROR
sleep 1


for $row=0 to ubound($recordset,1)
for $column=0 to ubound($recordset,2)
? 'Field(row='+$row+', column='+$column+') ='+$recordset[$row,$column]
next
next


? "Your workstation ID number is " + $Recordset




And it appears to NOT be erroring out. It says completed sucessfully in two places. ... but never shows any data.
I'm confused!