-
Notifications
You must be signed in to change notification settings - Fork 1
/
connto.prg
61 lines (50 loc) · 1.63 KB
/
connto.prg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/** \brief Crea el objeto de conexion con el servidor indicado.
\return Devuelve el objeto si realizó la conexión. Caso contrario
devuelve nulo.
*/
#ifdef __MYSQL__
#include "tdolphin.ch"
#include "hbcompat.ch"
FUNCTION ConnectTo( cServer )
LOCAL c
LOCAL hIni
LOCAL oServer:=NIL
LOCAL cDbType,cHost, cUser, cPassword, nPort, cDBName,nFlags,cSchema
LOCAL oErr
c = "tpy"
if cServer != NIL
c = cServer
endif
hIni := HB_ReadIni( "connect.ini" )
oServer := NIL
cDBType := hIni[ cServer ]["srv"]
cHost := hIni[ cServer ]["host"]
cUser := hIni[ cServer ]["user"]
cPassword := hIni[ cServer ]["psw"]
nPort := val(hIni[ cServer ]["port"])
cDBName := hIni[ cServer ]["dbname"]
// nFlags := val(hIni[ cServer ]["flags"])
TRY
if cDBType == "mysql"
CONNECT oServer HOST cHost ;
USER cUser ;
PASSWORD cPassword ;
PORT nPort ;
FLAGS val(hIni[ cServer ]["flags"]) ;
DATABASE cDBName
elseif cDBType == "pgsql"
oServer := TPQServer():New( cHost, ;
cDBName, ;
cUser, ;
cPassword, ;
nPort, ;
hIni[cServer]["schema"] )
// else
// MsgLog("Tipo de Base de datos desconocido.")
endif
CATCH oErr
RETURN NIL
END
RETURN oServer
#endif
//EOF