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.
The moose likes JDBC and the fly likes create table.. which method? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "create table.. which method?" Watch "create table.. which method?" New topic
Author

create table.. which method?

tormod eriksen
Ranch Hand

Joined: Jan 23, 2002
Posts: 52
Hi,
I wonder is it fine to use any of the two methods
-Statement : execute
-Statemetn : executeUpdate
when one is to pass a create table .. ddl statement to a database?
tormod
Rajendar Goud
Ranch Hand

Joined: Mar 06, 2002
Posts: 220
Hi
Both will serve the purpose i think.But generally,DDL statements like create,alter,drop are used with execute() and DML statements like insert,update and etc are used with exeuteUpdate() method.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: create table.. which method?
 
Similar Threads
Help a beginner create a database! ;-)
Derby Bulk Insert
multiple primary key exception
Problem with Hibernate Mapping
Creating New SQL DB