<font size=2 face="sans-serif">I have this statement in each result file
for ny DB. I am currently accessing a other than default schema on a DB2
server, which has no way to set a different schema as default for a user.</font>
<br>
<br><font size=2 face="sans-serif">__PACKAGE__->table("ACCOUNT_DETAILS");<br>
</font>
<br>
<br><font size=2 face="sans-serif">To get my data out of the DB, I have
been forced to change this to </font>
<br>
<br><font size=2 face="sans-serif">__PACKAGE__->table("HCDB_TEST.ACCOUNT_DETAILS");</font>
<br>
<br><font size=2 face="sans-serif">Specifying the schema. Unfortunately,
anytime I need to re-create my model all these edits will go away. I
do not want to edit 52+ files everytime I need to reload.</font>
<br>
<br><font size=2 face="sans-serif">My question is, is there a way to have
the string "HCDB_TEST>" prepended when making a call to any
model?</font>
<br>
<br><font size=2 face="sans-serif">Whet would it look like and where should
it be put?</font>
<br>
<br><font size=2 face="sans-serif">Can I re-define the table below the
"Do Not edit" line? Or would it be better to add something more
global in nature?</font>
<br>
<br>
<br>