I've not been keeping up to date on the list so apologies if this has
already been spotted.

Since the field object has been removed and replaced with a struct, the
ObjectDAO.cfc's for databases other than mssql are now broken.  The
following line needs to be updated to remove references to the gettre
methods.

<cfset Field.default = getDefault(qFields.default,
Field.getCfDataType(), Field.getNullable()) />

Should be..

<cfset Field.default = getDefault(qFields.default, Field.cfDataType,
Field.nullable) />

Cheers, 
Chris



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

Reply via email to