M
Michael
I have a simple query on a simple table ....
There are no duplicate records in the database - visually
checked in side Access yet the following query reports
some records more than once ...
aSSQL = "SELECT * FROM rte_steps WHERE rte_id_num =" &
rid & " ORDER BY rte_seq ASC"
Set nRs = Server.CreateObject("ADODB.recordset")
Set nRs.ActiveConnection = oConn
nRs.Source = aSSQL
nRs.LockType = 3
nRs.Open
response.write(scratch)
do While Not nRs.EOF
/// +++++ Print a bunch of stuff here ++++
nRs.MoveNext
Loop
nRs.Close
Is it a corrupted table or a problem with the locktype
value for theis query ????
There are no duplicate records in the database - visually
checked in side Access yet the following query reports
some records more than once ...
aSSQL = "SELECT * FROM rte_steps WHERE rte_id_num =" &
rid & " ORDER BY rte_seq ASC"
Set nRs = Server.CreateObject("ADODB.recordset")
Set nRs.ActiveConnection = oConn
nRs.Source = aSSQL
nRs.LockType = 3
nRs.Open
response.write(scratch)
do While Not nRs.EOF
/// +++++ Print a bunch of stuff here ++++
nRs.MoveNext
Loop
nRs.Close
Is it a corrupted table or a problem with the locktype
value for theis query ????