Use an update query, not a recordset to update data. Using a recordset
is bloated and slow.
> line 13 Set pdbFSDB = Server.CreateObject("ADODB.Connection")
> line 14 pdbFSDB.open "FSDB", "",""
then do:
pdbFSDB.Execute "Update ...."
and das it. no muss, no fuss.
sgd