diff options
author | Marc G. Fournier | 1996-10-07 21:19:09 +0000 |
---|---|---|
committer | Marc G. Fournier | 1996-10-07 21:19:09 +0000 |
commit | 4e8f5c337cc46f30471346b968f03413408425b2 (patch) | |
tree | 8460daaad302ebe97961f5779ccdee17d468c055 /src/interfaces/libpgtcl/pgtclCmds.h | |
parent | ea733aa997f0d3d71ae530485706b5ed76d02fd5 (diff) |
Well I haven't received any feedback pro or con re my suggested new Tcl
function so I am going to assume that it is such a good idea that no
one sees any point in discussing it. :-) I have made two changes -
I have merged this into pgtclCmds.c and I have taken out any code for
updating tuples after the loop body runs. See comments for discussion
of this.
I have also fixed up the error checking stuff so that break, continue
and syntax errors have the expected result.
Submitted by: D'Arcy Cain
Diffstat (limited to 'src/interfaces/libpgtcl/pgtclCmds.h')
-rw-r--r-- | src/interfaces/libpgtcl/pgtclCmds.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/libpgtcl/pgtclCmds.h b/src/interfaces/libpgtcl/pgtclCmds.h index 244471ebe1b..23664de18f9 100644 --- a/src/interfaces/libpgtcl/pgtclCmds.h +++ b/src/interfaces/libpgtcl/pgtclCmds.h @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pgtclCmds.h,v 1.1.1.1 1996/07/09 06:22:16 scrappy Exp $ + * $Id: pgtclCmds.h,v 1.2 1996/10/07 21:19:09 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -24,6 +24,8 @@ extern int Pg_disconnect( ClientData cData, Tcl_Interp *interp, int argc, char* argv[]); extern int Pg_exec( ClientData cData, Tcl_Interp *interp, int argc, char* argv[]); +extern int Pg_select( + ClientData cData, Tcl_Interp *interp, int argc, char* argv[]); extern int Pg_result( ClientData cData, Tcl_Interp *interp, int argc, char* argv[]); extern int Pg_lo_open( |