The cf-orm tag has no wiki summary.
14
votes
4answers
3k views
Things to watch out for in ColdFusion 9 with CF-ORM
What are some of the things you've observed in ColdFusion 9 with CF-ORM (Hibernate) that one should watch out for?
3
votes
1answer
99 views
Can ColdFusion ORM handle Unicode string?
How can I make CF9's ORM (aka Hibernate) save strings as unicode string?
I.e. use prefix N'string' in SQL Server
Thanks!
2
votes
1answer
135 views
bi-directional o2m/m2o beats uni-directional o2m in SQL efficiency?
Use these 2 persistent CFCs for example:
// Cat.cfc
component persistent="true" {
property name="id" fieldtype="id" generator="native";
property name="name";
}
// Owner.cfc
component ...
2
votes
3answers
302 views
Cleanest way to log who updated what in CF-ORM / Hibernate?
One of the requirements of my project is to log who (which Staff) updated what (from what version to what version). UI needs to show who updated entity X at what time and what are updated.
What is ...
1
vote
3answers
140 views
How to work with detached object in CF9?
If User is an entity, and I need to store User in Session, it will be detached on next request.
AFAIK there're only 2 methods to handle these detached objects
EntityMerge(session.user) - update DB ...
1
vote
2answers
129 views
How to cache rarely changed many-to-one entity in CF ORM?
How to cache rarely changed many-to-one entity in CF ORM, such as, userType where there are only < 10 types? I don't want the extra select to get the type name.
EhCache? Any XML needed to be ...
0
votes
4answers
549 views
How to map this link table in cf-orm?
A 1---* A_B *---1 B
Table A has aID (PK), Table B has bID (PK),
table A_B has:
aID (PK, FK),
bID (PK, FK),
num
I tried
property name="A" fieldtype="many-to-one" cfc="A" fkcolumn="aID";
property ...