Hola Foro
Existe alguna clase que agrupe las funciones para ADO sin tener que llamarlas directamente?
FWH 25.12
Harbour/Hbmk2
Microsoft Visual C++
MySql 8.0
Antigravity
Hola Foro
Existe alguna clase que agrupe las funciones para ADO sin tener que llamarlas directamente?
FWH 25.12
Harbour/Hbmk2
Microsoft Visual C++
MySql 8.0
Antigravity
Look for AdoFunc.prg in the Samples folder .. \source\function
Rick Lipkin
Thanks
I already check them. I was trying to find a class or something similar to use it instead FW_ function
FWH 25.12
Harbour/Hbmk2
Microsoft Visual C++
MySql 8.0
Antigravity
Here is my original post ( some years ago ) using native Microsoft Ado Class's and methods .. Rao has done a great job with the wrappers found in AdoFunc.Prg ... Here is the FiveWin Wili on ADO.
Rick Lipkin
*** Constant Group: CursorTypeEnum
algo asi
#Include "fivewin.ch"
CLASS TSqlServer
Data oCon
Data cHost
Data cDatabase
Data cUser
Data cPass
METHOD New(Host, Database, User, Pass) CONSTRUCTOR
METHOD CreateDatabase()
METHOD GetTables()
METHOD Open(cTable)
METHOD Query(cSql)
METHOD Exec(cSql)
METHOD GetStruct(cTable)
METHOD ImportFromDbf(cFile)
ENDCLASSMETHOD New(Host, Database, User, Pass) CLASS TSqlServer
...
::oCon := Fw_OpenAdoConnection(cString,.T.)
...
Return SelfFWH 25.12
Harbour/Hbmk2
Microsoft Visual C++
MySql 8.0
Antigravity