first thnaks alot it works!!!
second when i want fro example to do a select syntax i do :
VB Code:
With rdoQry
.SQL = "select * from tbl1"
.RowsetSize = 1
Set .ActiveConnection = cnMySql
Set rdoRS = .OpenResultset(rdOpenKeyset, rdConcurRowVer)
End With
the thing is if i after few rows of code want to do another select syntx like :
VB Code:
With rdoQry
.SQL = "select * from orders"
.RowsetSize = 1
Set .ActiveConnection = cnMySql
Set rdoRS = .OpenResultset(rdOpenKeyset, rdConcurRowVer)
End With
it fails!
why is that?
thnaks again
Peleg