S
Scott
I have a standard (non access\sqp project) frontend-backend app. Below is
sample code of how I get a recordset from backend.
I'd like to know if there is a way with ADO to open a recordset on a SQL
Server that isn't linked to my access app, but merely on the network. I'd
prefer to do it without linking to the sql table and just make the
connection at runtime via vba code. Can anyone provide sample code?
Dim rs As ADODB.Recordset
Set rs = New ADODB.Recordset
rs.ActiveConnection = CurrentProject.Connection
rs.CursorType = adOpenForwardOnly
rs.LockType = adLockReadOnly
rs.Open "SELECT ShiftName from mytable"
sample code of how I get a recordset from backend.
I'd like to know if there is a way with ADO to open a recordset on a SQL
Server that isn't linked to my access app, but merely on the network. I'd
prefer to do it without linking to the sql table and just make the
connection at runtime via vba code. Can anyone provide sample code?
Dim rs As ADODB.Recordset
Set rs = New ADODB.Recordset
rs.ActiveConnection = CurrentProject.Connection
rs.CursorType = adOpenForwardOnly
rs.LockType = adLockReadOnly
rs.Open "SELECT ShiftName from mytable"