| 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.
|
 |
 |
|
|
subject: create table.. which method?
|
|
|