New functions HB_AdoRddGetConnection( [<nWorkArea>] ) --> oAdoConnection

and HB_AdoRddGetCatalog( [<nWorkArea>] ) --> oAdoCatalog
This commit is contained in:
Antonio Linares
2007-05-09 08:40:56 +00:00
parent 60f8ef1aa4
commit a9d05113bf

View File

@@ -835,4 +835,16 @@ static function SQLTranslate( cExpr )
cExpr = StrTran( cExpr, ".AND.", "AND" )
cExpr = StrTran( cExpr, ".OR.", "OR" )
return cExpr
return cExpr
function HB_AdoRddGetConnection( nWA )
DEFAULT nWA TO Select()
return s_aConnections[ nWA ]
function HB_AdoRddGetCatalog( nWA )
DEFAULT nWA TO Select()
return s_aCatalogs[ nWA ]