PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV (versiones precedentes) → how to insert data into an external table with hfsql and windev
how to insert data into an external table with hfsql and windev
Iniciado por Yess, 22,mar. 2018 13:05 - No hay respuesta
Publicado el 22,marzo 2018 - 13:05
intento insertar datos a una tabla externa, utilizo el siguiente codigo, si lo realiza, pero no en la tabla del analisis de la conexion, si no que crea una tabla en el analisis del proyecto y ahi los agrega.

quiero que los inserte en el analisis de la conexion.


conecta is Connection
conecta..Server=gsErver + ":" + gsPort
conecta..Database=bd
conecta..User=guser
conecta..Password=gsPass
conecta..Provider=hAccessHFClientServer

IF HOpenConnection(conecta) = False THEN
Error(HErrorInfo())
RETURN
END

IF HDeclareExternal("./Gpw_SitioYohualli/Producto.FIC", "Producto", conecta) = False THEN
Error(HErrorInfo())
RETURN
END

// Run the query
dsSQLQuery is Data Source
IF NOT HExecuteSQLQuery(dsSQLQuery, conecta, hQueryDefault,[
insert into Producto(Nombre)values('prueba')
]) THEN
Error("Runtime problem"+HErrorInfo())
ELSE
Info("ok")
END
// Cancels the dynamic declaration of the file
HCancelDeclaration("Producto")

// Closes the connection to the database
HCloseConnection(conecta)

How can I do it?