Package uk.ac.starlink.table.jdbc
Class WriteMode
java.lang.Object
uk.ac.starlink.table.jdbc.WriteMode
Defines how records are written to a database table.
- Since:
- 11 Dec 2007
- Author:
- Mark Taylor
-
Field Details
-
CREATE
WriteMode which creates a new database table before writing. It is an error if a table of the same name already exists. -
DROP_CREATE
WriteMode which creates a new database table before writing. If a table of the same name already exists, it is dropped first. -
APPEND
WriteMode which appends to an existing table. An error results if the named table has the wrong structure for the data being written.
-
-
Method Details