I've started using UE for all of my Oracle development tasks. One thing that MS Sql offered was a "parameter" replace feature when creating new objects. The way that it worked was to search a script and find specially formatted text and ask you what the replacement term should be. I've included a sample of what I'm trying to describe below. In any case, it would find the distinct set of parms (in this example, <<Name>>, <<Description>> and <<Date>>) and it would ask you what the replacement value should be. You'll notice that <<Name>> appears twice, but it would only ask for the replacement value once, and then it would go about replacing all of the placeholder values with the newly captured values.
CREATE OR REPLACE VIEW <<Name>>
/* ************************************
** Name: <<Name>>
** Desc: <<Description>>
** Date: <<Date>>
** *********************************** */
...Script goes here...
Assuming <<Name>> = Foo and <<Description>> = Bar and <<Date>> is today's date, the output would get turned into:
CREATE OR REPLACE VIEW Foo
/* ************************************
** Name: Foo
** Desc: Bar
** Date: 2012/01/01
** *********************************** */
...Script goes here...
Any ideas how to accomplish this in UE?
CREATE OR REPLACE VIEW <<Name>>
/* ************************************
** Name: <<Name>>
** Desc: <<Description>>
** Date: <<Date>>
** *********************************** */
...Script goes here...
Assuming <<Name>> = Foo and <<Description>> = Bar and <<Date>> is today's date, the output would get turned into:
CREATE OR REPLACE VIEW Foo
/* ************************************
** Name: Foo
** Desc: Bar
** Date: 2012/01/01
** *********************************** */
...Script goes here...
Any ideas how to accomplish this in UE?