diff options
author | Satoshi Kinoshita <[email protected]> | 2013-01-10 11:23:41 +0900 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-03-27 16:47:52 +0100 |
commit | de56e0943aa79723c45647722eef209d5061849a (patch) | |
tree | 375d1f36f2b8f7b9ed2194056bf1062d868f414a /lib/odbc/test/oracle.erl | |
parent | 16ea5fc0048d121d9bd09e9389142cc3a09ad047 (diff) | |
download | otp-de56e0943aa79723c45647722eef209d5061849a.tar.gz otp-de56e0943aa79723c45647722eef209d5061849a.tar.bz2 otp-de56e0943aa79723c45647722eef209d5061849a.zip |
drop procedure after testing
Diffstat (limited to 'lib/odbc/test/oracle.erl')
-rw-r--r-- | lib/odbc/test/oracle.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/odbc/test/oracle.erl b/lib/odbc/test/oracle.erl index 3e5fd244a0..052461ba4f 100644 --- a/lib/odbc/test/oracle.erl +++ b/lib/odbc/test/oracle.erl @@ -241,6 +241,9 @@ describe_floating() -> describe_dec_num() -> {ok,[{"MYDEC",{sql_decimal,9,3}},{"MYNUM",{sql_decimal,9,2}}]}. +drop_proc() -> + "drop procedure test_proc1;". + stored_proc_integer_out() -> "create or replace PROCEDURE test_proc1(" ++ "int_a OUT NUMBER, " ++ |