Added another constructor.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1072 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-03-22 01:20:13 +00:00
parent 1799d7d06e
commit f6bbcd2187
@@ -67,6 +67,22 @@ public class Table {
init(className, tableName, s, keys, false);
}
/** Constructor for table object. Make association between Java class
* and database table.
*
* @param tclassName name of Java class
* @param tableName name of database table mapped on this Java class
* @param key table's primary key. This parameter is used in UPDATE/DELETE
* operations to locate record in the table.
* @param s session, which should be opened before first access to the table
* @param mixedCaseConvert whether or not to convert mixed case field
* names into underscore separated uppercase column names.
*/
public Table(String className, String tableName, Session s, String[] keys,
boolean mixedCaseConvert) {
init(className, tableName, s, keys, mixedCaseConvert);
}
/** Constructor for table object. Make association between Java class
* and database table. Name of Java class should be the same as name of
* the database table