This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
If you want to issue a CREATE, DROP or ALTER command in SQL, which function should you call on your Statement: executeQuery(), executeUpdate(), or execute()?
Robert Brunner
Ranch Hand
Joined: Jul 18, 2001
Posts: 49
posted
0
executeUpdate, as you are doing SQL DDL statements. You should get zero rows returned in the update count.
krishnan sampath
Greenhorn
Joined: Aug 08, 2001
Posts: 3
posted
0
If you want to execute a DDL statement from java, it is enough to run a stored procedure.. In the stored procedure use execute_immediate (for 8i and above) for executing the DDL statements. If your oracle version 8 and use DBMS_SQL.PARSE,DBMS_SQL.DEFINE_COLUMN, DBMS_SQL.EXECUTE, for executing DDL statements