Thanks for catching that. I'm making progress now but I still have two issues. Here at home I'm testing on MSSQL so I won't no for sure if there are Oracle issues until Monday.
 
Issue one:
I'm pretty sure this is a Model Glue error and I'm going to post about it there but I'll mention it here just in case. When using the actual name MyFieldName displays as My Field Name on the scaffolding form, detail, list pages. When using the alias it displays as App.MyAliasName.label.
 
Issue two:
I've tested on six columns. It works on four but two give me the error below. I am literally cutting and pasting the names out of SQL Server Enterprise Manager so I know I have the names right. I also deleted all of the generated files to make sure that I'm starting from scratch. It's the top two columns that are giving me the error.
 
<reactor>
 <objects> 
  <object name="App">
   <!--
   <field name="TypeId" alias="NewColOne" /> THIS IS A SMALLINT 2 AND GIVES THE ERROR
    -->
   <!--
   <field name="CommonName" alias="NewColTwo" /> THIS IS A VARCHAR 50 AND GIVES THE ERROR
    -->
   <field name="AlternateName" alias="NewColThree" /> THIS IS A VARCHAR 50 AND WORKS   
   <field name="DevUrl" alias="NewColFour" /> THIS IS A VARCHAR 100 AND WORKS  
   <field name="ProdUrl" alias="NewColFive" /> THIS IS A CHAR 100 AND WORKS   
   <field name="DevFiles" alias="NewColSix" />  THIS IS A CHAR 100 AND WORKS   
 
  </object>
 </objects>
</reactor>
 
Message   Field Does Not Exist
Detail  The field 'CommonName' does not exist for the 'App' object.
Extended Info  
Tag Context  D:\www\reactor\base\abstractMetadata.cfc (69)
D:\www\reactor\query\order.cfc (27)
D:\www\reactor\query\order.cfc (49)
D:\www\ModelGlue\unity\orm\ReactorAdapter.cfc (330)
D:\www\ModelGlue\unity\controller\ReactorORMController.cfc (45)
D:\www\ModelGlue\unity\listener\Listener.cfc (26)
D:\www\ModelGlue\unity\eventrequest\MessageBroadcaster.cfc (32)
D:\www\ModelGlue\unity\framework\ModelGlue.cfc (332)
D:\www\ModelGlue\unity\framework\ModelGlue.cfc (290)
D:\www\ModelGlue\unity\framework\ModelGlue.cfc (263)
D:\www\ModelGlue\unity\ModelGlue.cfm (58)
D:\www\AppSecurityManager\index.cfm (53)
 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
Sent: Saturday, August 12, 2006 8:53 AM
To: [email protected]
Subject: Re: [Reactor for CF] Oracle Problem - the case of an argument changes

Try this please:

<reactor>

<objects>

<object name="MyObjectName">
<field name="MyColumnName" alias="MyColumnAlias" />
</object>
</objects>
</reactor>

Wouter

On Aug 12, 2006, at 08:52, Bryan S wrote:

<reactor>
<object name="MyObjectName">
<field name="MyColumnName" alias="MyColumnAlias" />
</object>
</reactor>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Reactor for ColdFusion Mailing List
[email protected]
Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

Reply via email to