About EvalentisEvalentis is the sole proprietorship company of Rainer Schreiber, founded January 1st, 2010.
Evalentis offers the following services:
With the development of web applications, Rainer uses the scripting language CFML (ColdFusion Markup Language), and one of the Adobe, Railo or Open BlueDragon J2EE CFML servers. The web hosting of several sites and applications is outsourced to CloudVPS, on virtual private servers. Those servers are mainly configured with Apache and Tomcat on the Ubuntu (Linux) operating system. About Rainer SchreiberMy name is Rainer, I am 40 years old, and have been working in the ICT branch since 1996. In the first years, I was a RS/6000 hardware specialist with IBM Netherlands. |
In the beginning of 2000, I made a career move to software development. From that moment, I’ve been working for companies like Davilex (ASP), Sogyo (JAVA), ViaNetworks (PHP), e-dynamics (CF), Ministerie van S.Z.W. (CF), Inter IKEA (CF) and Kapaza! (CF). In January 2010, I started as a freelance developer, and worked for customers like AllCommunication Software, Dialogues Technology (ABN-AMRO), MobiDM (Veliq), and Belastingdienst.
If you want to have a website or application developed, or if you are looking for additional FTE to develop parts and components, please contact me. ExpertiseLanguages: CFML, Java, JavaScript, jQuery, PHP, ASP, HTML, CSS. Frameworks: ColdBox, ColdSpring, Hibernate, Transfer, Mach-II, Fusebox, jQuery Mobile, PhoneGap. Tools: Eclipse, CFEclipse, Fireworks, PhoneGap. Application servers: ColdFusion, Railo, Apache, Tomcat, IIS. OS’s: Ubuntu Server + Desktop, Mac OSX, Windows Server. |
Recent Posts
Railo ORMExecutequery named parameters java.lang.NullPointerException
Reply
This is just something I was knocking my head off the last hour or so:
When you use Railo’s ORM ORMExecutequery with named parameters, you need to be sure that you pass in child objects, instead of the ID’s of child objects.
This works: ORMExecutequery("SELECT COUNT(*) from parentTable WHERE ID=#ID# AND childID=#child.getID()#", true);
But this NOT: ORMExecutequery("SELECT COUNT(*) from parentTable WHERE ID=:ID AND childID=:childID", {ID=ID, childID=child.getID()}, true);
You got to do this: ORMExecutequery("SELECT COUNT(*) from parentTable WHERE ID=:ID AND child=:child", {ID=ID, child=child}, true);
Once you got it, you got it