diff options
author | Michael Meskes <meskes@postgresql.org> | 2000-02-18 08:49:07 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2000-02-18 08:49:07 +0000 |
commit | e3befe4a66c68fea03300eadb9d9b2f1c2534dc6 (patch) | |
tree | a352130bd4b291d05362e31c1fcb12c2085fa04b | |
parent | 8cb624262abdc194616aaf89e1ab48cdc63e5cc2 (diff) | |
download | postgresql-e3befe4a66c68fea03300eadb9d9b2f1c2534dc6.tar.gz postgresql-e3befe4a66c68fea03300eadb9d9b2f1c2534dc6.zip |
*** empty log message ***
-rw-r--r-- | src/interfaces/ecpg/lib/README.dynSQL | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/interfaces/ecpg/lib/README.dynSQL b/src/interfaces/ecpg/lib/README.dynSQL deleted file mode 100644 index fedcf80402d..00000000000 --- a/src/interfaces/ecpg/lib/README.dynSQL +++ /dev/null @@ -1,20 +0,0 @@ -descriptor statements have the following shortcomings - -- up to now the only reasonable statement is - FETCH ... INTO SQL DESCRIPTOR <name> - no input variables allowed! - - Reason: to fully support dynamic SQL the frontend/backend communication - should change to recognize input parameters. - Since this is not likely to happen in the near future and you - can cover the same functionality with the existing infrastructure - I'll leave the work to someone else. - -- string buffer overflow does not always generate warnings - (beware: terminating 0 may be missing because strncpy is used) - :var=data sets sqlwarn accordingly (but not indicator) - -- char variables pointing to NULL are not allocated on demand - -- string truncation does not show up in indicator - |