hi,
I have a MySql database with a table named test (testid int, name
varchar(50)
I have the following code in my reactor.xml file <object name="test"/>
I have the following code in my modelGlue.xml
<event-handler name="user.login3" access="public">
<broadcasts>
<message name="ModelGlue.genericRead">
<argument name="recordName"
value="userRecord" />
<argument name="criteria"
value="name" />
<argument name="object"
value="test" />
</message>
</broadcasts>.... etc etc
so when I hit the page with
http://localhost/main/?event=user.login3&name=gabriel
I would expect to see in the debugging that it had WHERE name='gabriel'...
but instead i see
SELECT
`test`.`testid` AS `testid`, `test`.`name` AS
`name`
FROM
`test` AS `test`
WHERE `test`.`testid` = ?
Any help would be greatly appreciated.
thanks
gabriel
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Reactor for ColdFusion Mailing List
[email protected]
Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --