Package | Description |
---|---|
com.fgm.javaUtils.dbObjects |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
InfoObjectManager.alterTable(CreateTableObject cto)
Compare the table that is currently in the database and add/delete columns to match
the map contained in the CreateTableObject.
|
java.lang.String |
InfoObjectManager.createTable(CreateTableObject cto)
Using the map of data contained in the CreateTableObject as a template, build a mySql table.
|
java.lang.String |
InfoObjectManager.createTableAndInsert(CreateTableObject cto)
Check to see if the table already exists.
|
java.lang.String |
InfoObjectManager.describeObject(CreateTableObject cto)
Returns a string containing a list of items in the data, the value used to create
the table, and the java type of the data.
|
java.lang.String |
InfoObjectManager.dropTable(CreateTableObject cto)
Drop the table specified in the tablename string within the CreateTableObject.
|