Hi,
Somedays ago, I had a sql server table.
My code were somthing like:
set rst= db.openrecordset("SomeSqlServerTable")
while not rst.eof
if SomeCondition then
rst.edit
rst!SomeField="SomeValue"
rst.update
endif
rst.movenext
wend
Today, the table is in mysql but this code is very slow (maybe the odbc is the problem).
I'm thinking about migrate the code to mysql and I have not found the rst.edit manipulatefield rst.update equivalents.
Some clue???
Somedays ago, I had a sql server table.
My code were somthing like:
set rst= db.openrecordset("SomeSqlServerTable")
while not rst.eof
if SomeCondition then
rst.edit
rst!SomeField="SomeValue"
rst.update
endif
rst.movenext
wend
Today, the table is in mysql but this code is very slow (maybe the odbc is the problem).
I'm thinking about migrate the code to mysql and I have not found the rst.edit manipulatefield rst.update equivalents.
Some clue???