Last modified by Ravi Mendis on 2012/02/11 08:28

From version 167.1
edited by Ravi Mendis
on 2011/05/10 11:42
Change comment: There is no comment for this version
To version 168.1
edited by Pascal Robert
on 2012/02/11 08:28
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.rmendis
1 +XWiki.probert
Content
... ... @@ -19,7 +19,7 @@
19 19  
20 20  ===== Using EOAccess to execute SQL =====
21 21  
22 -Use Wonder API: [[ERXEOAccessUtilities.evaluateSQLWithEntityNamed()>>http://webobjects.mdimension.com/hudson/job/Wonder53/javadoc/er/extensions/eof/ERXEOAccessUtilities.html#evaluateSQLWithEntity(com.webobjects.eocontrol.EOEditingContext,%20com.webobjects.eoaccess.EOEntity,%20java.lang.String)]]
22 +Use Wonder API: [[ERXEOAccessUtilities.evaluateSQLWithEntityNamed()>>http://wocommunity.org/documents/javadoc/wonder/latest/er/extensions/eof/ERXEOAccessUtilities.html#evaluateSQLWithEntity(com.webobjects.eocontrol.EOEditingContext,%20com.webobjects.eoaccess.EOEntity,%20java.lang.String)]]
23 23  
24 24  ===== Caveats =====
25 25  
... ... @@ -47,7 +47,7 @@
47 47  
48 48  ==== 2. Explicit Transaction Control ====
49 49  
50 -Database transactions are explicit in Squeryl. All interactions with the database occur within transaction blocks.
50 +Database transactions are explicit in Squeryl. All interactions with the database occur within transaction blocks.
51 51  
52 52  {{code}}
53 53  
... ... @@ -70,7 +70,7 @@
70 70  update(songs)(s =>
71 71   where(s.title === "Watermelon Man")
72 72   set(s.year := s.year.~ + 1)
73 -)
73 +)
74 74  
75 75  {{/code}}
76 76