From f5a5b44c4dc481188d8f83fc92dcca691214cf24 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 18 Oct 2001 20:43:05 +0000 Subject: [PATCH] Change error code docs to use colons. --- doc/src/sgml/ecpg.sgml | 50 +++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index b642ceab49..8f4e599a5f 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -1,5 +1,5 @@ @@ -224,7 +224,7 @@ struct sqlca - -200 (ECPG_UNSUPPORTED), Unsupported type %s on line %d. + -200 (ECPG_UNSUPPORTED): Unsupported type %s on line %d. Should not normally occur. This indicates the preprocessor has @@ -236,7 +236,7 @@ struct sqlca - -201 (ECPG_TOO_MANY_ARGUMENTS), Too many arguments line %d. + -201 (ECPG_TOO_MANY_ARGUMENTS): Too many arguments line %d. This means that Postgres has @@ -248,7 +248,7 @@ struct sqlca - -202 (ECPG_TOO_FEW_ARGUMENTS), Too few arguments line %d. + -202 (ECPG_TOO_FEW_ARGUMENTS): Too few arguments line %d. This means that Postgres has @@ -260,7 +260,7 @@ struct sqlca - -203 (ECPG_TOO_MANY_MATCHES), Too many matches line %d. + -203 (ECPG_TOO_MANY_MATCHES): Too many matches line %d. This means the query has returned several rows but the @@ -271,7 +271,7 @@ struct sqlca - -204 (ECPG_INT_FORMAT), Not correctly formatted int type: %s line %d. + -204 (ECPG_INT_FORMAT): Not correctly formatted int type: %s line %d. This means the host variable is of type int and @@ -284,7 +284,7 @@ struct sqlca - -205 (ECPG_UINT_FORMAT), Not correctly formatted unsigned type: %s line %d. + -205 (ECPG_UINT_FORMAT): Not correctly formatted unsigned type: %s line %d. This means the host variable is of type unsigned @@ -298,7 +298,7 @@ struct sqlca - -206 (ECPG_FLOAT_FORMAT), Not correctly formatted floating point type: %s line %d. + -206 (ECPG_FLOAT_FORMAT): Not correctly formatted floating point type: %s line %d. This means the host variable is of type float and @@ -311,7 +311,7 @@ struct sqlca - -207 (ECPG_CONVERT_BOOL), Unable to convert %s to bool on line %d. + -207 (ECPG_CONVERT_BOOL): Unable to convert %s to bool on line %d. This means the host variable is of type bool and @@ -322,7 +322,7 @@ struct sqlca - -208 (ECPG_EMPTY), Empty query line %d. + -208 (ECPG_EMPTY): Empty query line %d. Postgres returned PGRES_EMPTY_QUERY, probably @@ -332,7 +332,7 @@ struct sqlca - -209 (ECPG_MISSING_INDICATOR), NULL value without indicator in line %d. + -209 (ECPG_MISSING_INDICATOR): NULL value without indicator in line %d. Postgres returned ECPG_MISSING_INDICATOR @@ -342,7 +342,7 @@ struct sqlca - -210 (ECPG_NO_ARRAY), Variable is not an array in line %d. + -210 (ECPG_NO_ARRAY): Variable is not an array in line %d. Postgres returned ECPG_NO_ARRAY @@ -353,7 +353,7 @@ struct sqlca - -211 (ECPG_DATA_NOT_ARRAY), Data read from backend is not an array in line %d. + -211 (ECPG_DATA_NOT_ARRAY): Data read from backend is not an array in line %d. Postgres returned ECPG_DATA_NOT_ARRAY @@ -364,7 +364,7 @@ struct sqlca - -220 (ECPG_NO_CONN), No such connection %s in line %d. + -220 (ECPG_NO_CONN): No such connection %s in line %d. The program tried to access a connection that does not exist. @@ -373,7 +373,7 @@ struct sqlca - -221 (ECPG_NOT_CONN), Not connected in line %d. + -221 (ECPG_NOT_CONN): Not connected in line %d. The program tried to access a connection that does exist but is @@ -383,7 +383,7 @@ struct sqlca - -230 (ECPG_INVALID_STMT), Invalid statement name %s in line %d. + -230 (ECPG_INVALID_STMT): Invalid statement name %s in line %d. The statement you are trying to use has not been prepared. @@ -392,7 +392,7 @@ struct sqlca - -240 (ECPG_UNKNOWN_DESCRIPTOR), Descriptor %s not found in line %d. + -240 (ECPG_UNKNOWN_DESCRIPTOR): Descriptor %s not found in line %d. The descriptor specified was not foundstatement you are trying to use has not been prepared. @@ -401,7 +401,7 @@ struct sqlca - -241 (ECPG_INVALID_DESCRIPTOR_INDEX), Descriptor index out of range in line %d. + -241 (ECPG_INVALID_DESCRIPTOR_INDEX): Descriptor index out of range in line %d. The descriptor index specified was out of range. @@ -410,7 +410,7 @@ struct sqlca - -242 (ECPG_UNKNOWN_DESCRIPTOR_ITEM), Descriptor %s not found in line %d. + -242 (ECPG_UNKNOWN_DESCRIPTOR_ITEM): Descriptor %s not found in line %d. The descriptor specified was not foundstatement you are trying to use has not been prepared. @@ -419,7 +419,7 @@ struct sqlca - -243 (ECPG_VAR_NOT_NUMERIC), Variable is not a numeric type in line %d. + -243 (ECPG_VAR_NOT_NUMERIC): Variable is not a numeric type in line %d. The database returned a numeric value and the variable was not @@ -429,7 +429,7 @@ struct sqlca - -244 (ECPG_VAR_NOT_CHAR), Variable is not a character type in line %d. + -244 (ECPG_VAR_NOT_CHAR): Variable is not a character type in line %d. The database returned a non-numeric value and the variable was @@ -439,7 +439,7 @@ struct sqlca - -400 (ECPG_PGSQL), Postgres error: %s line %d. + -400 (ECPG_PGSQL): Postgres error: %s line %d. Some Postgres error. @@ -450,7 +450,7 @@ struct sqlca - -401 (ECPG_TRANS), Error in transaction processing line %d. + -401 (ECPG_TRANS): Error in transaction processing line %d. Postgres signaled that we cannot start, @@ -460,7 +460,7 @@ struct sqlca - -402 (ECPG_CONNECT), Could not connect to database %s in line %d. + -402 (ECPG_CONNECT): Could not connect to database %s in line %d. The connect to the database did not work. @@ -469,7 +469,7 @@ struct sqlca - 100 (ECPG_NOT_FOUND), Data not found line %d. + 100 (ECPG_NOT_FOUND): Data not found line %d. This is a normal error that tells you that what you are querying cannot -- 2.40.0