PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WEBDEV 2024 → Connection with externa databsae
Connection with externa databsae
Débuté par Mimmo Ghiara, 22 oct. 2019 16:55 - Aucune réponse
Posté le 22 octobre 2019 - 16:55
HI everyone,
I created a connection with an external database. The engine is mariadb. I downloaded drivers and what else, the connection in analysis works.
Then I go on to create the connection via code and i wrote this

MyConnection is Connection
// Describe the connection
MyConnection..User = "USER"
MyConnection..Password = "PASSWORD"
MyConnection..Server = "MYSERVER"
MyConnection..Database = "Database"
MyConnection..Provider = hAccessHFClientServer
MyConnection..Access = hOReadWrite
MyConnection..ExtendedInfo = "Extended information"
MyConnection..CursorOptions = hClientCursor

HOpenConnection (MyConnection)

It gives me error 27

Do I have to include the Dlls in the application server even if I have a trial? and if so where do I find the Webdev application server?

Thanks