Mercurial > sqlpython
changeset 295:ca8db5d7c41d
added to docs
author | catherine@dellzilla |
---|---|
date | Tue, 24 Mar 2009 15:00:44 -0400 |
parents | dd7b3e4b58dd |
children | ba5d5483e0db |
files | docs/source/limitations.rst |
diffstat | 1 files changed, 38 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/docs/source/limitations.rst Tue Mar 24 14:40:53 2009 -0400 +++ b/docs/source/limitations.rst Tue Mar 24 15:00:44 2009 -0400 @@ -26,11 +26,46 @@ To parse PL/SQL safely, enclose each free-standing PL/SQL block between a REMARK BEGIN and a REMARK END statement. -Unsupported commands --------------------- +Unsupported SQL\*Plus commands +------------------------------ + +(partial list) + +* APPEND + +* ARCHIVE LOG + +* ATTRIBUTE + +* BREAK, BTITLE, CLEAR, COLUMN, COMPUTE, REPFOOTER, REPHEADER, and all SQL\*Plus report formatting commands. In my opinion, special sqlpython output is +much more powerful than SQL\*Plus report-formatting anyway. + +* COPY (Consider using `cat {table} \\i > table.sql`, `connect -a me@otherplace`, then `@table.sql`) + +* DEL + +* DISCONNECT + +* INPUT * PASSWORD +* RECOVER + +* SET APPINFO + +* SET ARRAYSIZE + +* SET AUTOCOMMIT (but should!) + +* SET AUTOPRINT (but should!) + * SET FEEDBACK OFF -* SET AUTOTRACE ON \ No newline at end of file +* SET AUTOTRACE ON + +* UNDEFINE + +* VARIABLE (unneeded; bind variables can be set without pre-defining them) + +* WHENEVER