LIBRERIA WDO

mod_harbour es un módulo para Apache que permite correr tus PRGs directamente en la web!!!
Post Reply
PGO
Posts: 17
Joined: Tue Aug 25, 2020 10:05 pm

LIBRERIA WDO

Post by PGO »

Buenas noches

Estoy probando la libreria de Carles Aubia para conectar con cualquier base de datos https://github.com/carles9000/wdo.

He creado en /htdocs/lib/wdo y he copiado wdo.hrb en dicha carpeta.

He creado el siguiente ejemplo siguiendo el manual de Carles

Code: Select all

//  --------------------------------------------------------------
//  Title......: WDO Web Database Objects
//  Description: Test WDO - ADO
//  Date.......: 17/09/2019
//
//  {% LoadHRB( '/lib/wdo/wdo.hrb' ) %}     //  Loading WDO lib
//  --------------------------------------------------------------

FUNCTION Main()

        ?? '<h3>VERSION WDO ==> ' , WDO():version() 
        
return nil      
 
Pero al ejecutarlo me da el siguiente error:

Error: Unknown or unregistered symbol
operation: PTRTOSTR
called from: HB_HRBLOAD, line: 0
called from: ..\source\exec.prg, LOADHRB, line: 159
called from: ..\source\exec.prg, (b)REPLACEBLOCKS, line: 133
called from: ..\source\exec.prg, REPLACEBLOCKS, line: 133
called from: ..\source\exec.prg, EXECUTE, line: 55

Source:
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: LIBRERIA WDO

Post by Antonio Linares »

Por favor descarga nuevamente libharbour.dll desde https://github.com/FiveTechSoft/mod_har ... arbour.dll
y copiala en c:\Apache24\htdocs

Con esta versión actualizada el ejemplo funciona correctamente

Puedes comprobar la versión de mod_harbour que usas haciendo:

? ModBuildDate()
regards, saludos

Antonio Linares
www.fivetechsoft.com
PGO
Posts: 17
Joined: Tue Aug 25, 2020 10:05 pm

Re: LIBRERIA WDO

Post by PGO »

Gracias ya funciona.
Post Reply