*** empty log message ***
This commit is contained in:
parent
5f39ba8142
commit
9fb20f105f
@ -894,5 +894,13 @@ Mon Apr 3 21:20:27 CEST 2000
|
|||||||
- Made sure pointers are correctly inserted by libecpg. My thanks go
|
- Made sure pointers are correctly inserted by libecpg. My thanks go
|
||||||
to Jan Urbanek <jan@urbanek.cz> for findin many bugs before the
|
to Jan Urbanek <jan@urbanek.cz> for findin many bugs before the
|
||||||
release.
|
release.
|
||||||
|
|
||||||
|
Wed Apr 5 07:54:56 CEST 2000
|
||||||
|
|
||||||
|
- Added patch by Peter Eisentraut <e99re41@DoCS.UU.SE> to fix some
|
||||||
|
duplicate definittions in preproc.y.
|
||||||
|
- Removed duplicate ',' in execute.c.
|
||||||
|
- Changed error message for backend errors so it fits into sqlca.
|
||||||
|
- Fixed array handling.
|
||||||
- Set library version to 3.1.0.
|
- Set library version to 3.1.0.
|
||||||
- Set ecpg version to 2.7.0.
|
- Set ecpg version to 2.7.0.
|
||||||
|
@ -34,7 +34,7 @@ extern "C"
|
|||||||
const char *descriptor,const char *query);
|
const char *descriptor,const char *query);
|
||||||
bool ECPGdeallocate_desc(int line,const char *name);
|
bool ECPGdeallocate_desc(int line,const char *name);
|
||||||
bool ECPGallocate_desc(int line,const char *name);
|
bool ECPGallocate_desc(int line,const char *name);
|
||||||
void ECPGraise(int line, int code, const char *str);
|
void ECPGraise(int line, int code, char *str);
|
||||||
bool ECPGget_desc_header(int, char *, int *);
|
bool ECPGget_desc_header(int, char *, int *);
|
||||||
bool ECPGget_desc(int, char *, int, ...);
|
bool ECPGget_desc(int, char *, int, ...);
|
||||||
|
|
||||||
|
@ -7,9 +7,10 @@
|
|||||||
#include <sqlca.h>
|
#include <sqlca.h>
|
||||||
|
|
||||||
void
|
void
|
||||||
ECPGraise(int line, int code, const char *str)
|
ECPGraise(int line, int code, char *str)
|
||||||
{
|
{
|
||||||
sqlca.sqlcode = code;
|
sqlca.sqlcode = code;
|
||||||
|
|
||||||
switch (code)
|
switch (code)
|
||||||
{
|
{
|
||||||
case ECPG_NOT_FOUND:
|
case ECPG_NOT_FOUND:
|
||||||
@ -118,8 +119,12 @@ ECPGraise(int line, int code, const char *str)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ECPG_PGSQL:
|
case ECPG_PGSQL:
|
||||||
|
/* strip trailing newline */
|
||||||
|
if (str[strlen(str)-1] == '\n')
|
||||||
|
str[strlen(str)-1] = '\0';
|
||||||
|
|
||||||
snprintf(sqlca.sqlerrm.sqlerrmc,sizeof(sqlca.sqlerrm.sqlerrmc),
|
snprintf(sqlca.sqlerrm.sqlerrmc,sizeof(sqlca.sqlerrm.sqlerrmc),
|
||||||
"Postgres error '%s' in line %d.", str, line);
|
"'%s' in line %d.", str, line);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ECPG_TRANS:
|
case ECPG_TRANS:
|
||||||
|
@ -479,7 +479,7 @@ ECPGexecute(struct statement * stmt)
|
|||||||
strncpy(mallocedval + strlen(mallocedval) - 1, "}'", sizeof("}'"));
|
strncpy(mallocedval + strlen(mallocedval) - 1, "}'", sizeof("}'"));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
sprintf(mallocedval, "%c,", (*((char *) var->value)) ? 't' : 'f');
|
sprintf(mallocedval, "%c", (*((char *) var->value)) ? 't' : 'f');
|
||||||
|
|
||||||
tobeinserted = mallocedval;
|
tobeinserted = mallocedval;
|
||||||
break;
|
break;
|
||||||
@ -541,7 +541,7 @@ ECPGexecute(struct statement * stmt)
|
|||||||
|
|
||||||
default:
|
default:
|
||||||
/* Not implemented yet */
|
/* Not implemented yet */
|
||||||
ECPGraise(stmt->lineno, ECPG_UNSUPPORTED, ECPGtype_name(var->type));
|
ECPGraise(stmt->lineno, ECPG_UNSUPPORTED, (char *)ECPGtype_name(var->type));
|
||||||
return false;
|
return false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -859,7 +859,7 @@ ECPGdo(int lineno, const char *connection_name, char *query, ...)
|
|||||||
*
|
*
|
||||||
* Copyright (c) 2000, Christof Petig <christof.petig@wtal.de>
|
* Copyright (c) 2000, Christof Petig <christof.petig@wtal.de>
|
||||||
*
|
*
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/execute.c,v 1.3 2000/04/03 19:34:25 meskes Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/execute.c,v 1.4 2000/04/05 09:05:28 meskes Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
PGconn *ECPG_internal_get_connection(char *name);
|
PGconn *ECPG_internal_get_connection(char *name);
|
||||||
@ -1024,6 +1024,6 @@ bool ECPGdo_descriptor(int line,const char *connection,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ECPGraise(line, ECPG_UNKNOWN_DESCRIPTOR, descriptor);
|
ECPGraise(line, ECPG_UNKNOWN_DESCRIPTOR, (char *) descriptor);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.57 2000/03/30 11:41:40 meskes Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.58 2000/04/05 09:05:34 meskes Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -827,6 +827,7 @@ lex_init(void)
|
|||||||
braces_open = 0;
|
braces_open = 0;
|
||||||
|
|
||||||
preproc_tos = 0;
|
preproc_tos = 0;
|
||||||
|
yylineno = 0;
|
||||||
ifcond = TRUE;
|
ifcond = TRUE;
|
||||||
stacked_if_value[preproc_tos].condition = ifcond;
|
stacked_if_value[preproc_tos].condition = ifcond;
|
||||||
stacked_if_value[preproc_tos].else_branch = FALSE;
|
stacked_if_value[preproc_tos].else_branch = FALSE;
|
||||||
|
@ -325,7 +325,7 @@ make_name(void)
|
|||||||
%type <str> TriggerActionTime CreateTrigStmt DropPLangStmt PLangTrusted
|
%type <str> TriggerActionTime CreateTrigStmt DropPLangStmt PLangTrusted
|
||||||
%type <str> CreatePLangStmt IntegerOnly TriggerFuncArgs TriggerFuncArg
|
%type <str> CreatePLangStmt IntegerOnly TriggerFuncArgs TriggerFuncArg
|
||||||
%type <str> ViewStmt LoadStmt CreatedbStmt createdb_opt_encoding
|
%type <str> ViewStmt LoadStmt CreatedbStmt createdb_opt_encoding
|
||||||
%type <str> createdb_opt_location opt_encoding AlterTableStmt
|
%type <str> createdb_opt_location opt_encoding
|
||||||
%type <str> DropdbStmt ClusterStmt grantee RevokeStmt table_expr Bit bit
|
%type <str> DropdbStmt ClusterStmt grantee RevokeStmt table_expr Bit bit
|
||||||
%type <str> GrantStmt privileges operation_commalist operation
|
%type <str> GrantStmt privileges operation_commalist operation
|
||||||
%type <str> opt_cursor opt_lmode ConstraintsSetStmt comment_tg
|
%type <str> opt_cursor opt_lmode ConstraintsSetStmt comment_tg
|
||||||
@ -333,7 +333,7 @@ make_name(void)
|
|||||||
%type <str> select_clause opt_select_limit select_limit_value ConstraintTimeSpec
|
%type <str> select_clause opt_select_limit select_limit_value ConstraintTimeSpec
|
||||||
%type <str> select_offset_value using_expr join_expr ReindexStmt
|
%type <str> select_offset_value using_expr join_expr ReindexStmt
|
||||||
%type <str> using_list from_expr join_clause join_type
|
%type <str> using_list from_expr join_clause join_type
|
||||||
%type <str> join_qual update_list join_clause join_clause_with_union
|
%type <str> join_qual update_list join_clause_with_union
|
||||||
%type <str> opt_level opt_lock lock_type users_in_new_group_clause
|
%type <str> opt_level opt_lock lock_type users_in_new_group_clause
|
||||||
%type <str> OptConstrFromTable comment_op OptTempTableName
|
%type <str> OptConstrFromTable comment_op OptTempTableName
|
||||||
%type <str> constraints_set_list constraints_set_namelist comment_fn
|
%type <str> constraints_set_list constraints_set_namelist comment_fn
|
||||||
@ -359,7 +359,7 @@ make_name(void)
|
|||||||
%type <str> enum_type civariableonly ECPGCursorStmt ECPGDeallocate
|
%type <str> enum_type civariableonly ECPGCursorStmt ECPGDeallocate
|
||||||
%type <str> ECPGFree ECPGDeclare ECPGVar opt_at enum_definition
|
%type <str> ECPGFree ECPGDeclare ECPGVar opt_at enum_definition
|
||||||
%type <str> struct_type s_struct declaration declarations variable_declarations
|
%type <str> struct_type s_struct declaration declarations variable_declarations
|
||||||
%type <str> s_struct s_union union_type ECPGSetAutocommit on_off
|
%type <str> s_union union_type ECPGSetAutocommit on_off
|
||||||
%type <str> ECPGAllocateDescr ECPGDeallocateDescr symbol opt_symbol
|
%type <str> ECPGAllocateDescr ECPGDeallocateDescr symbol opt_symbol
|
||||||
%type <str> ECPGGetDescriptorHeader ECPGColId ECPGColLabel ECPGTypeName
|
%type <str> ECPGGetDescriptorHeader ECPGColId ECPGColLabel ECPGTypeName
|
||||||
%type <str> ECPGLabelTypeName
|
%type <str> ECPGLabelTypeName
|
||||||
@ -4349,7 +4349,7 @@ variable: opt_pointer ECPGColLabel opt_array_bounds opt_initializer
|
|||||||
$$ = cat_str(4, $1, mm_strdup($2), $3.str, $4);
|
$$ = cat_str(4, $1, mm_strdup($2), $3.str, $4);
|
||||||
break;
|
break;
|
||||||
case ECPGt_varchar:
|
case ECPGt_varchar:
|
||||||
if (dimension == -1)
|
if (dimension < 0)
|
||||||
type = ECPGmake_simple_type(actual_type[struct_level].type_enum, length);
|
type = ECPGmake_simple_type(actual_type[struct_level].type_enum, length);
|
||||||
else
|
else
|
||||||
type = ECPGmake_array_type(ECPGmake_simple_type(actual_type[struct_level].type_enum, length), dimension);
|
type = ECPGmake_array_type(ECPGmake_simple_type(actual_type[struct_level].type_enum, length), dimension);
|
||||||
|
@ -198,13 +198,6 @@ static void ECPGdump_a_struct(FILE *o, const char *name, const char *ind_name, l
|
|||||||
void
|
void
|
||||||
ECPGdump_a_type(FILE *o, const char *name, struct ECPGtype * typ, const char *ind_name, struct ECPGtype * ind_typ, const char *prefix, const char *ind_prefix)
|
ECPGdump_a_type(FILE *o, const char *name, struct ECPGtype * typ, const char *ind_name, struct ECPGtype * ind_typ, const char *prefix, const char *ind_prefix)
|
||||||
{
|
{
|
||||||
#if 0
|
|
||||||
if (ind_typ == NULL)
|
|
||||||
{
|
|
||||||
ind_typ = &ecpg_no_indicator;
|
|
||||||
ind_name = "no_indicator";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
switch (typ->typ)
|
switch (typ->typ)
|
||||||
{
|
{
|
||||||
case ECPGt_array:
|
case ECPGt_array:
|
||||||
@ -273,23 +266,35 @@ ECPGdump_a_simple(FILE *o, const char *name, enum ECPGttype typ,
|
|||||||
char *variable = (char *) mm_alloc(strlen(name) + ((prefix == NULL) ? 0 : strlen(prefix)) + 4);
|
char *variable = (char *) mm_alloc(strlen(name) + ((prefix == NULL) ? 0 : strlen(prefix)) + 4);
|
||||||
char *offset = (char *) mm_alloc(strlen(name) + strlen("sizeof(struct varchar_)") + 1);
|
char *offset = (char *) mm_alloc(strlen(name) + strlen("sizeof(struct varchar_)") + 1);
|
||||||
|
|
||||||
|
switch (typ)
|
||||||
|
{
|
||||||
|
case ECPGt_varchar:
|
||||||
/* we have to use the pointer except for arrays with given bounds */
|
/* we have to use the pointer except for arrays with given bounds */
|
||||||
if (arrsize > 0)
|
if (arrsize > 0)
|
||||||
sprintf(variable, "(%s%s)", prefix ? prefix : "", name);
|
sprintf(variable, "(%s%s)", prefix ? prefix : "", name);
|
||||||
else
|
else
|
||||||
sprintf(variable, "&(%s%s)", prefix ? prefix : "", name);
|
sprintf(variable, "&(%s%s)", prefix ? prefix : "", name);
|
||||||
|
|
||||||
switch (typ)
|
|
||||||
{
|
|
||||||
case ECPGt_varchar:
|
|
||||||
sprintf(offset, "sizeof(struct varchar_%s)", name);
|
sprintf(offset, "sizeof(struct varchar_%s)", name);
|
||||||
break;
|
break;
|
||||||
case ECPGt_char:
|
case ECPGt_char:
|
||||||
case ECPGt_unsigned_char:
|
case ECPGt_unsigned_char:
|
||||||
case ECPGt_char_variable:
|
case ECPGt_char_variable:
|
||||||
|
/* we have to use the pointer except for arrays with given bounds */
|
||||||
|
if (varcharsize > 1 || arrsize > 0)
|
||||||
|
sprintf(variable, "(%s%s)", prefix ? prefix : "", name);
|
||||||
|
else
|
||||||
|
sprintf(variable, "&(%s%s)", prefix ? prefix : "", name);
|
||||||
|
|
||||||
sprintf(offset, "%ld*sizeof(char)", varcharsize == 0 ? 1 : varcharsize);
|
sprintf(offset, "%ld*sizeof(char)", varcharsize == 0 ? 1 : varcharsize);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
/* we have to use the pointer except for arrays with given bounds */
|
||||||
|
if (arrsize > 0)
|
||||||
|
sprintf(variable, "(%s%s)", prefix ? prefix : "", name);
|
||||||
|
else
|
||||||
|
sprintf(variable, "&(%s%s)", prefix ? prefix : "", name);
|
||||||
|
|
||||||
sprintf(offset, "sizeof(%s)", ECPGtype_name(typ));
|
sprintf(offset, "sizeof(%s)", ECPGtype_name(typ));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
all: test1 test2 test3 test4 perftest dyntest dyntest2
|
all: test1 test2 test3 test4 perftest dyntest dyntest2
|
||||||
|
|
||||||
#LDFLAGS=-g -I /usr/local/pgsql/include -L/usr/local/pgsql/lib -lecpg -lpq -lcrypt
|
LDFLAGS=-g -I /usr/local/pgsql/include -L/usr/local/pgsql/lib -lecpg -lpq -lcrypt
|
||||||
LDFLAGS=-g -I../include -I/usr/include/postgresql -L../lib -L/usr/lib/postgresql -lecpg -lpq -lcrypt
|
#LDFLAGS=-g -I../include -I/usr/include/postgresql -L../lib -L/usr/lib/postgresql -lecpg -lpq -lcrypt
|
||||||
#LDFLAGS=-g -I/usr/include/postgresql -lecpg -lpq -lcrypt
|
#LDFLAGS=-g -I/usr/include/postgresql -lecpg -lpq -lcrypt
|
||||||
|
|
||||||
#ECPG=/usr/local/pgsql/bin/ecpg
|
#ECPG=/usr/local/pgsql/bin/ecpg
|
||||||
|
@ -11,6 +11,8 @@ EXEC SQL BEGIN DECLARE SECTION;
|
|||||||
int i = 3;
|
int i = 3;
|
||||||
int *did = &i;
|
int *did = &i;
|
||||||
int a[10] = {9,8,7,6,5,4,3,2,1,0};
|
int a[10] = {9,8,7,6,5,4,3,2,1,0};
|
||||||
|
char text[10] = "klmnopqrst";
|
||||||
|
char *t = "uvwxyz1234";
|
||||||
double f;
|
double f;
|
||||||
EXEC SQL END DECLARE SECTION;
|
EXEC SQL END DECLARE SECTION;
|
||||||
FILE *dbgs;
|
FILE *dbgs;
|
||||||
@ -26,34 +28,36 @@ EXEC SQL END DECLARE SECTION;
|
|||||||
|
|
||||||
EXEC SQL BEGIN WORK;
|
EXEC SQL BEGIN WORK;
|
||||||
|
|
||||||
/* EXEC SQL CREATE TABLE test (f decimal(8,2), i int, a int[10]);*/
|
EXEC SQL CREATE TABLE test (f float, i int, a int[10], text char(10));
|
||||||
EXEC SQL CREATE TABLE test (f float, i int, a int[10]);
|
|
||||||
|
|
||||||
EXEC SQL INSERT INTO test(f,i,a) VALUES(404.90,1,'{0,1,2,3,4,5,6,7,8,9}');
|
EXEC SQL INSERT INTO test(f,i,a,text) VALUES(404.90,1,'{0,1,2,3,4,5,6,7,8,9}','abcdefghij');
|
||||||
|
|
||||||
EXEC SQL INSERT INTO test(f,i,a) VALUES(140787.0,2,:a);
|
EXEC SQL INSERT INTO test(f,i,a,text) VALUES(140787.0,2,:a,:text);
|
||||||
|
|
||||||
EXEC SQL INSERT INTO test(f,i,a) VALUES(14.07,:did,:a);
|
EXEC SQL INSERT INTO test(f,i,a,text) VALUES(14.07,:did,:a,:t);
|
||||||
|
|
||||||
EXEC SQL COMMIT;
|
EXEC SQL COMMIT;
|
||||||
|
|
||||||
EXEC SQL BEGIN WORK;
|
EXEC SQL BEGIN WORK;
|
||||||
|
|
||||||
EXEC SQL SELECT f
|
EXEC SQL SELECT f,text
|
||||||
INTO :f
|
INTO :f,:text
|
||||||
FROM test
|
FROM test
|
||||||
WHERE i = :i;
|
WHERE i = 1;
|
||||||
|
|
||||||
printf("Found f=%f\n", f);
|
printf("Found f=%f text=%10.10s\n", f, text);
|
||||||
|
|
||||||
EXEC SQL SELECT a
|
f=14.07;
|
||||||
INTO :a
|
EXEC SQL SELECT a,text
|
||||||
|
INTO :a,:t
|
||||||
FROM test
|
FROM test
|
||||||
WHERE f = :f;
|
WHERE f = :f;
|
||||||
|
|
||||||
for (i = 0; i < 10; i++)
|
for (i = 0; i < 10; i++)
|
||||||
printf("Found a[%d] = %d\n", i, a[i]);
|
printf("Found a[%d] = %d\n", i, a[i]);
|
||||||
|
|
||||||
|
printf("Found text=%10.10s\n", t);
|
||||||
|
|
||||||
EXEC SQL DROP TABLE test;
|
EXEC SQL DROP TABLE test;
|
||||||
|
|
||||||
EXEC SQL COMMIT;
|
EXEC SQL COMMIT;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user