o.Connect(lcConnectString, llAsynch, llNoAutoTransactions)
When passing connection strings you can optionally omit the server= (defaults to . or local) and driver={Sql Server} attributes. All the following are valid connection strings:
driver={Sql Server};server=.;Database=WebStore;uid=webstore;pwd=secret
server=devserver;Database=WebStore
Database=WebStore
llAsynch
Optional - if .T. use Async requests against the connection. Default: .F.
llNoAutoTransactions
If set causes VFP to not use automatic transactions for commands. This can be faster. By default transactions are used for each batch.
SQLSetProp(0, 'DispLogin', 3) SQLSetProp(0, 'DispWarnings', .F.) *** Map binary fields to BLOB/VarBinary CURSORSETPROP("MapBinary",.T.,0)