/** the default database name for this class */ public static final String DATABASE_NAME = "default";
/** the table name for this class */ public static final String TABLE_NAME = "id_table";
/**
* @return the map builder for this peer
* @throws TorqueException Any exceptions caught during processing will be
* rethrown wrapped into a TorqueException
*/
public static MapBuilder getMapBuilder()
throws TorqueException
{
return getMapBuilder(IdTableMapBuilder.CLASS_NAME);
}/** the column name for the ID_TABLE_ID field */ public static final String ID_TABLE_ID; /** the column name for the TABLE_NAME field */ public static final String TABLE_NAME;
Notice that the string TABLE_NAME is defined twice. I am not sure why it is generating things like this. It also indicates that it's using the id_table stuff rather than the native stuff I defined when I created the DB for the idMethod. Anyone have any thoughts?
-Brandon
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
