Lets say f.i. i have a recordset "objRS" and I wan't to find out if it is closed or not.. how do i do that ?
Printable View
Lets say f.i. i have a recordset "objRS" and I wan't to find out if it is closed or not.. how do i do that ?
you can use the state property:
rs.state=0 '--> rs is closed
rs.state=1 '--> rs is open