AdoServer:Source Access

<< Click to Display Table of Contents >>

Navigation:  Dataservers > AdoServer Class >

AdoServer:Source Access

Previous pageReturn to chapter overviewNext page

 

Return the underlying source of the Server

 

 

Prototype

 

ACCESS Source CLASS AdoServer

 

Return

 

 

 

Example(s)

 

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

 

See Also