Hello,
I was wondering if there is a better way to define my own domains like
"NAME" which I can then use to define columns like firstName,
middleName, lastName, productName, etc
Right now I do some hoops with unix sed scripting to get the result like
so
My original schema entries:
<column name="nickName" --NAME--/>
<column name="firstName" --NAME--/>
<column name="middleName" --NAME--/>
<column name="lastName" --NAME--/>
Sed script
s@--NAME--@size="20" type="VARCHAR"@g
Final schema:
<column name="nickName" size="20" type="VARCHAR"/>
<column name="firstName" size="20" type="VARCHAR"/>
<column name="middleName" size="20" type="VARCHAR"/>
<column name="lastName" size="20" type="VARCHAR"/>
Thanks,
Viru
PS: I am not subscribed to the mailing list so if replying kindly make
sure that you are sending mail to my email address also.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>