You cannot post messages because only members can post, and you are not currently a member.
Description:
For users of the ColdFusion Reactor ORM framework
|
|
|
objectTranslator.cfc throwing error at line 149
|
| |
I'm a bit lost on what to do, I'm trying to make changes to a record, and I keep getting this error. Message An error occured while Searching an XML document. Detail Empty expression! Extended Info Tag Context C:\Websites\157900dq4\Framewor ks\Reactor\reactor\core \objectTranslator.cfc (149) C:\Websites\157900dq4\Framewor ks\Reactor\reactor\core... more »
|
|
Set Now() to new records
|
| |
I'm doing this in my UserRecord.cfc <cffunction name="setdateAdded" hint="I set the dateAdded value ." access="public" output="false" returntype="void"> <cfargument name="dateAdded" hint="I am this record's dateAdded value." required="yes" type="any" _type="string" /> <cfif Len(Trim(dateAdded)) EQ 0>... more »
|
|
Bug: reactor.base.abstractMetadata. cfc line 295
|
| |
var definitions must be at top of function. I'm guessing whoever
added the code above this is using CF9, I think I read that CF9 allows
var's anwhere, but CF8 doesn't.
To fix, I put these up top.
<cfset var fields = 0>
<cfset var f = "">
And changed the two lines
<cfset var fields = getFields()>... more »
|
|
Correct method of saving timestamps
|
| |
I have a MSSQL database with a table that has a datetime column, with
a default of getdate(). When the column is nullable, Reactor inserts a
null value (and the resulting value stored is null, not the current
time). When the column does not allow null values, Reactor tries to
insert a zero-character string causing an SQL error. I believe this is... more »
|
|
setBeanFactory method was not found
|
| |
I'm setting up Reactor in a Model-Glue environment, but Reactor threw
this error when attempting to run for the first time. Any directions
I should look?
The setBeanFactory method was not found.
Either there are no methods with the specified method name and
argument types, or the setBeanFactory method is overloaded with... more »
|
|
ObjectDao.cfc
|
| |
If the dbuser has the DBS role granted, the ObjectDao.cfc can create a
Record object with repeated attributes. This occurs only if the oracle
SID has more than one user having the same table name, ie
RSHU.BRUKER, KUNDE2.BRUKER, DROPBOX.BRUKER.
The following query retuns 3 rows
SELECT object_name table_name,... more »
|
|
How to get?
|
| |
Hi,
I'm a little frustrated at getting a copy of Reactor. I've tried
getting via SVN as I posted before. I've tried getting a latest zip,
but they are not regular zips. They are bzip2's. I googled bzip2,
and downloaded a copy. bzip2 has no clue what to do with it, so
creates a generic .out version. (I used bzip2 -d reactor*). You... more »
|
|
svn Username and Password
|
| |
Hi,
I'm trying to get the latest of Reactor. Pointing TortoiseSVN at
[link] requires me to enter a username
and password. It doesn't accept blanks. Any help?
|
|
Scaffolding & Reactor
|
| |
I have a couple Reactor/MG/Scaffolding questions, please...
1) When I scaffold, my LIST views are not showing me any columns that
are configured as primary keys within MSSQL.
I've narrowed it down to this line in the List.cfc template...
<<cfloop list="%Metadata.orderedPropert yList%"
index="variables.thisProp">>... more »
|
|
|