diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-09 10:39:54 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-09 10:39:54 +0000 |
commit | 4aa1734f3642a5a7c5e1156892f72dcc4c55645a (patch) | |
tree | ddd364767d558473b8bd7b8a3b73bbdade5d98ef /src/interfaces/libpgtcl/pgtcl.c | |
parent | 7ee9464bc1c545031fe968d3dc0e23636deb8034 (diff) |
Added in PQconnectdb() function
Submitted by: wieck@sapserv.debis.de (Jan Wieck)
Diffstat (limited to 'src/interfaces/libpgtcl/pgtcl.c')
-rw-r--r-- | src/interfaces/libpgtcl/pgtcl.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/interfaces/libpgtcl/pgtcl.c b/src/interfaces/libpgtcl/pgtcl.c index d4021894e44..ad9b68b41d0 100644 --- a/src/interfaces/libpgtcl/pgtcl.c +++ b/src/interfaces/libpgtcl/pgtcl.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.3 1996/10/30 06:18:38 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.4 1996/11/09 10:39:40 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -76,6 +76,11 @@ Pgtcl_Init (Tcl_Interp *interp) /* register all pgtcl commands */ Tcl_CreateCommand(interp, + "pg_conndefaults", + Pg_conndefaults, + (ClientData)cd, (Tcl_CmdDeleteProc*)NULL); + + Tcl_CreateCommand(interp, "pg_connect", Pg_connect, (ClientData)cd, (Tcl_CmdDeleteProc*)NULL); |