Does anybody know how to disconnect a recordset in FiveWin / xHarbour.
In VB its
Set oRs.ActiveConnection = Nothing
In FiveWin / xHarbour
oRs:ActiveConnection := Nil // does not work.
oRs:ActiveConnection := "" // does not work.
Thanks,
Byron...
Disconnected Recordset ADO
-
- Posts: 254
- Joined: Sun Nov 06, 2005 3:55 pm
- Location: Southern California, USA
- Contact:
Disconnected Recordset ADO
Thanks,
Byron Hopp
Matrix Computer Services
Byron Hopp
Matrix Computer Services
- Rick Lipkin
- Posts: 2397
- Joined: Fri Oct 07, 2005 1:50 pm
- Location: Columbia, South Carolina USA
oRs:Close()
I wrote a thread compiled from my questions .. hope this helps:
http://fivetechsoft.com/forums/viewtopi ... highlight=
Rick Lipkin
SC Dept of Health, USA
I wrote a thread compiled from my questions .. hope this helps:
http://fivetechsoft.com/forums/viewtopi ... highlight=
Rick Lipkin
SC Dept of Health, USA
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
-
- Posts: 254
- Joined: Sun Nov 06, 2005 3:55 pm
- Location: Southern California, USA
- Contact:
Disconnected Recordset.
Thanks,
oRs:ActiveConnection:hObj := nil
Works,
I see no reference of an hObj instance variable off the ActiveConnection propertity. How do you know this stuff, is there some defaults about all of these propertities and methods that would be helpful to know. Any information would be greatly appreciated.
Again your solution did work.
Thank you ,
oRs:ActiveConnection:hObj := nil
Works,
I see no reference of an hObj instance variable off the ActiveConnection propertity. How do you know this stuff, is there some defaults about all of these propertities and methods that would be helpful to know. Any information would be greatly appreciated.
Again your solution did work.
Thank you ,
Thanks,
Byron Hopp
Matrix Computer Services
Byron Hopp
Matrix Computer Services