<< Click to Display Table of Contents >> AdoServer:Source Access |
![]() ![]() ![]() |
Return the underlying source of the Server
ACCESS Source CLASS AdoServer
oSrv := AdoServer{"Select * from Employee order by emp_id", oConn,AdOpenStatic}
? "Original Source", oSrv:Source
// Do something
// Change source using String
oSrv:Source := "Select * from Employee where emp_id like 'P%' order by emp_id"
? "New Source", oSrv:Source
// Do something else