MuraCon 2012: A Conference for the Mura CMS Community

MuraCon 2012 is coming up and it's moved from last year's location. In fact, it's gone from the west coast to the east coast! What is MuraCon? MuraCon is the ONLY user conference organized by the folks who made Mura CMS, an enterprise open source content management system.

Who

Me! That's right, I'll be there along with many of my talented co-workers and team members from Blue River Interactive Group, the creators and curators of Mura CMS. Plus, many other members and contributors of the Mura CMS community will be there too...several of whom will also be presenting!

You! If you're part of the Mura CMS community either as a user, graphic/UI designer, front-end/UI developer, ColdFusion/CFML developer, or you're just a curious geek...then you're welcome to join in the fun.

When

Festivities will begin on Wednesday, October 10th and wrap up on Thursday, October 11th. However, there's going to be an Open Gov Seminar on Open Source CFML for Government presented by the OpenCFML Foundation preceeding the event on Tuesday, October 9th.

Where

MuraCon 2012 will be in Washington, DC at the Pew Conference Center; 901 E Street NW, 10th Floor, Washington, DC 20004.

Why?

I could go through several reasons, but I'll just get right down to it. You should attend because you're going to pick up some mad Mura skills. In addition, come and meet other members of the Mura CMS community. You'll have plenty of opportunities to network and socialize with not just other users, but the people who are pushing Mura CMS forward.

Register

Registration is only $199 for both days of the conference. MuraCon sold out last year, so be sure to register soon.

Bonus

If you register before September 1st, you'll receive the entire Mura CMS training library for FREE. This includes all three (3) books; Content Manager's Guide, Front-End Developer's Guide and Back-End Developer's Guide.

Want to Sponsor?

No problem, simply visit www.muracon.com/sponsors/become-a-sponsor/ and select your sponsorship level.

I hope to see you there!

Open Source Conference For CFML Developers

Just in case you didn't know...there's a pretty cool conference coming up called OpenCF Summit. It's a conference where you can listen to, meet, speak with, and even yell at many of the lead geeks and engineers working feverishly on a slew of free and open source software from the CFML world (that's ColdFusion Markup Language for you non-CFML-knowing peeps).

The conference runs February 24-26, 2012 in Dallas, Texas. Considering the conference costs only $72, it's quite the steal! Plus, did I mention there's a ton of free and open source software?

So get on over to http://opencfsummit.org to learn more and register now!

Cheers!

ColdFusion CFScript Query of Queries Example

This post is more for me than anything else...but I couldn't find a decent example of how to write a query of queries in ColdFusion's CFScript syntax. Below you'll see two queries; the first one is a simple query using ColdFusion's auto-generated dsn, the second one narrows the result set just a bit.

<cfscript>
    // Basic Query Syntax
    q1 = new Query();
    q1.setDatasource('cfartgallery');
    q1.setSQL('select * from artists');
    rs1 = q1.execute().getResult();
    WriteDump(var=rs1,label='RS1');
    
    // Query of Queries
    q2 = new Query();
    q2.setDBType('query');
    q2.setAttributes(rs=rs1); // needed for QoQ
    q2.addParam(name='state', value='CO', cfsqltype='cf_sql_varchar');
    q2.setSQL('SELECT * FROM rs where state = :state');
    q2.setMaxRows(2); // limit max rows, if desired
    rs2 = q2.execute().getResult();
    WriteDump(var=rs2,label='RS2');
</cfscript>

This should produce something similar to the following output:

Hope this helps...cheers!

More Entries

© 2024, Stephen J. Withington, Jr.  |  Hosted by Hostek.com

Creative Commons License   |   This work is licensed under a Creative Commons Attribution 3.0 Unported License.