summaryrefslogtreecommitdiff
path: root/src/interfaces
AgeCommit message (Expand)Author
2010-05-13Translation updatePeter Eisentraut
2010-05-12Add PGFILEDESC description to Makefiles for all /contrib executables.Bruce Momjian
2010-05-09Adjust comments about avoiding use of printf's %.*s.Tom Lane
2010-05-08Work around a subtle portability problem in use of printf %s format.Tom Lane
2010-05-07ECPG connect routine only checked for NULL to find empty parameters, but user...Michael Meskes
2010-04-30Fix a couple of places where the result of fgets() wasn't checked.Tom Lane
2010-04-28Fix typo that had the code check the same thing twice.Magnus Hagander
2010-04-03Make ecpg in line with other compilers in that it deletes its output if there...Michael Meskes
2010-04-03Message quoting style tuningPeter Eisentraut
2010-04-02FATAL errors are meant to stop ecpg immediately, e.g. because the syntax isMichael Meskes
2010-04-01Zoltan beautified his hidden-variable-patch for ecpg. This also makes sure we...Michael Meskes
2010-04-01Applied Zoltan's patch to make ecpg spit out warnings if a local variable hid...Michael Meskes
2010-03-31Give a more precise error message if a variable is re-used as cursor name in ...Michael Meskes
2010-03-23Remove useless double assignmentPeter Eisentraut
2010-03-22Fixed ECPG regression test to make sure it uses absolute paths for includeMichael Meskes
2010-03-21ECPG's parser now accepts and handles variables as arguments for the FREE com...Michael Meskes
2010-03-21Adjusted regression test results to the change I made in debug output for ecp...Michael Meskes
2010-03-21Correctly name functions in debug output in ecpglib. When the functions wereMichael Meskes
2010-03-21ECPG only copied #include statements instead of processing them according toMichael Meskes
2010-03-20Fixed ecpg parser to allow more than one C preprocessor command inside a decl...Michael Meskes
2010-03-17Fix peculiar, untranslatable message concatenation attemptPeter Eisentraut
2010-03-13Add libpq warning message if the .pgpass-retrieved password fails.Bruce Momjian
2010-03-09ecpg now adds a unique counter to its varchar struct definitions to make thes...Michael Meskes
2010-03-08Better test the content of the SQLSTATE string in ecpglib than the pointer.Michael Meskes
2010-03-08Require hostname to be set when using GSSAPI authentication. Without it,Magnus Hagander
2010-03-05In case the connection magically disappears libecpg only returns an internalMichael Meskes
2010-03-03Fix a couple of places that would loop forever if attempts to read a stdio fileTom Lane
2010-02-27Make sure ecpg uses the same header files in the same order as the backend.Michael Meskes
2010-02-27Insert a hack into get_float8_nan (both core and ecpg copies) to deal withTom Lane
2010-02-26Revert pgindent changes to ecpg include files that are part of ecpgBruce Momjian
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-19Translation updates for 9.0alpha4Peter Eisentraut
2010-02-17Stamp HEAD as 9.0devel, and update various places that were referring to 8.5Tom Lane
2010-02-16Have SELECT and CREATE TABLE AS queries return a row count. While thisBruce Momjian
2010-02-16Do not check nan values for infinity. Some system are not able to handle this.Michael Meskes
2010-02-09First try to make this one ecpg regression test work on Windows too. I'm just...Michael Meskes
2010-02-05Modify recently added PQconnectdbParams() with new argument, expand_dbname.Joe Conway
2010-02-04Usage of isnan() in ECPG regression tests probably needs '#include <float.h>'...Michael Meskes
2010-02-04Streamlined array handling code in libecpg a little bit, in the process fixin...Michael Meskes
2010-02-03Fixed some typos in ECPG regression test suite that resulted in regression te...Michael Meskes
2010-02-03Add #include <float.h> --- guessing the lack of this is why WindowsTom Lane
2010-02-02Fixed NaN/Infinity problems in ECPG for float/double/numeric/decimal by makin...Michael Meskes
2010-01-29Changed ECPG outofscope handling to always print out statements in the same o...Michael Meskes
2010-01-29Fixed a few typos in ecpg. Two were in comments, the third made a log output ...Michael Meskes
2010-01-28Introduce two new libpq connection functions, PQconnectdbParams andJoe Conway
2010-01-26Added test case that was part of Zoltan's patch but apparently wasn't part of...Michael Meskes
2010-01-26Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add out-of-scope curs...Michael Meskes
2010-01-22Make argument const char * as per Takahiro Itagaki's suggestion.Michael Meskes
2010-01-22Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to fix problem in auto-p...Michael Meskes
2010-01-21Fix unsafe loop test, and declare as_ident as bool rather than int.Robert Haas