Ticket #199 (closed defect: fixed)

Opened 20 years ago

Last modified 19 years ago

list error with Oracle

Reported by: Bryan S Owned by: somebody
Priority: highest Milestone:
Version: Severity: major
Keywords: Cc:

Description

IMPORTANT NOTE - I now have a great deal of debugging code in the framework so the actual line numbers will often be different in the original code

1) D:\Inetpub\wwwroot\ModelGlue?\unity\orm\ReactorAdapter?.cfc

<cffunction name="list" returntype="any" output="false" access="public">

<!--- Original Code ---> <cfset var md = getObjectMetadata(lcase(arguments.table)) />

<!--- Fix to problems shown below ---> <cfset var md = getObjectMetadata(arguments.table) />

<!-- Scaffolding the original table name --> <scaffold object="MyNewTableName?15" />

Oops! Message Object 'mynewtablename15' does not exist. Detail Reactor was unable to find an object in the database with the name 'mynewtablename15.' Extended Info Tag Context D:\Inetpub\wwwroot\reactor\core\objectFactory.cfc (156) D:\Inetpub\wwwroot\reactor\reactorFactory.cfc (101) D:\Inetpub\wwwroot\ModelGlue?\unity\orm\ReactorAdapter?.cfc (118) D:\Inetpub\wwwroot\ModelGlue?\unity\orm\ReactorAdapter?.cfc (473) D:\Inetpub\wwwroot\ModelGlue?\unity\controller\ReactorORMController.cfc (50) D:\Inetpub\wwwroot\ModelGlue?\unity\listener\Listener.cfc (26) D:\Inetpub\wwwroot\ModelGlue?\unity\eventrequest\MessageBroadcaster?.cfc (32) D:\Inetpub\wwwroot\ModelGlue?\unity\framework\ModelGlue?.cfc (332) D:\Inetpub\wwwroot\ModelGlue?\unity\framework\ModelGlue?.cfc (290) D:\Inetpub\wwwroot\ModelGlue?\unity\framework\ModelGlue?.cfc (263) D:\Inetpub\wwwroot\ModelGlue?\unity\ModelGlue?.cfm (75) D:\Inetpub\wwwroot\AppSecurityManager?\index.cfm (53)

<!-- Scaffolding the aliased table name --> <scaffold object="TestAliasTableName?" />

<reactor>

<objects>

<object name="MyNewTableName?15" alias="TestAliasTableName?">

<field name="ColOne?" alias="MyFieldAliasName?" /> <field name="ColTwo?" alias="MyFieldAliasTest?" /> <field name="ColSix?" alias="MyFieldAliasThree?" />

</object>

</objects>

</reactor>

Oops! Message Empty expression! Detail Empty expression! Extended Info Tag Context D:\Inetpub\wwwroot\reactor\core\objectTranslator.cfc (193) D:\Inetpub\wwwroot\reactor\core\objectTranslator.cfc (201) D:\Inetpub\wwwroot\reactor\core\objectTranslator.cfc (201) D:\Inetpub\wwwroot\reactor\core\objectTranslator.cfc (126) D:\Inetpub\wwwroot\reactor\core\objectFactory.cfc (285) D:\Inetpub\wwwroot\reactor\reactorFactory.cfc (119) D:\Inetpub\wwwroot\ModelGlue?\unity\orm\ReactorAdapter?.cfc (128) D:\Inetpub\wwwroot\ModelGlue?\unity\orm\ReactorAdapter?.cfc (473) D:\Inetpub\wwwroot\ModelGlue?\unity\controller\ReactorORMController.cfc (50) D:\Inetpub\wwwroot\ModelGlue?\unity\listener\Listener.cfc (26) D:\Inetpub\wwwroot\ModelGlue?\unity\eventrequest\MessageBroadcaster?.cfc (32) D:\Inetpub\wwwroot\ModelGlue?\unity\framework\ModelGlue?.cfc (332) D:\Inetpub\wwwroot\ModelGlue?\unity\framework\ModelGlue?.cfc (290) D:\Inetpub\wwwroot\ModelGlue?\unity\framework\ModelGlue?.cfc (263) D:\Inetpub\wwwroot\ModelGlue?\unity\ModelGlue?.cfm (75) D:\Inetpub\wwwroot\AppSecurityManager?\index.cfm (53)

Change History

Changed 19 years ago by joe.rinehart

  • status changed from new to closed
  • resolution set to fixed

The lcase() call was removed as part of another commit. Please test against Oracle.

Note: See TracTickets for help on using tickets.