microsoft adobe reader download

adobe acrobat x buy cheap free download adobe 6 adobe illustrator cs3 keygen download buy cheap free download adobe photoshop adobe acrobat full download

latest adobe download

adobe creative suite cheapest free adobe pdf download adobe 9 download buy cheap download adobe reader for mac os 10 dreamweaver 8 download adobe

free adobe writer download

creative suite 5 cheapest free download adobe acrobat installer adobe golive download cheapest adobe cs2 download free crack key generator free adobe photoshop software download

mac adobe reader download

buy cheap premiere pro cs5 adobe in design 2 download adobe premier plugins download cheapest adobe distiller download adobe photoshop elements 5 free download

free download adobe photoshop cs

buy cheap Adobe Flash CS5.5/a> adobe cs2 download crack key generator download adobe premiere elements cheapest adobe pagemaker full download adobe acrobat reader 9 download

my space adobe flash player download

in copy adobe cs6 buy cheap download adobe photoshop elements free adobe illustrator cs2 download buy cheap download adobe flashplayer free adobe robohelp 7 download

free adobe photoshop download cs2

cheapest indesign cs6 download adobe audition 2 for free free adobe photoshop full version download cheap adobe slovar download adobe imageready download

adobe macromedia flash download

Dreamweaver CS6 cheapest download adobe acrobat professional english adobe 8 reader download buy cheap free adobe dream weaver 8 download adobe raider 8 download

adobe bridge download

cheapest InCopy CS6 for mac adobe photoshop 2007 free download adobe acrobat flash download cheapest adobe acrobat reader 9 download adobe 8 reader download

download from adobe flash player

Photoshop CS6 mac cheap where can i download adobe flash player 9 adobe acrobat pro download cheapest adobe free download adobe cs3 mac download

adobe flash free download

Premiere Pro CS6 cheap free download adobe flash player download free adobe acrobat cheap adobe gamma download adobe 10 download

adobe premiere tryout download

creative suite 5 discount adobe pdf reader free download free adobe reader 8 to download buy cheap download adobe photoshop 7 download adobe scanner

old adobe software download

adobe incopy cheap free adobe photoshop full version download adobe indesign trial download buy cheap adobe page maker full download download adobe acrobat 7

adobe premier isxmpeg codec download

adobe creative suite 5 discount download isxmpeg codec from adobe premier free adobe mobile phone download cheap free download adobe illustrator cs3 free download adobe acrobat reader professional 6 cracked

download adobe flash player pictures

photoshop lightroom 3 cheapest how to download adobe flash videos free download hustler rmagizne in adobe format cheap download adobe elements download adobe reader for macintosh

free download adobe photo shop

buy cheap cs5 master collection adobe download download adobe reader version 5 discount download adobe photoshop 50 adobe photoshop cs3 download

adobe acrobat reader 4 download

discount adobe premiere pro adobe photoshop cs 3 download adobe pdf download security cheapest free download of adobe reader adobe photoshop 70 download

free adobe photoshop 7 brushes download

adobe web premium buy cheap adobe 6 download download adobe 5 buy cheap adobe rider download adobe flash player 8 free download

ColdFusion-ORM: Auto-generation of tables, Naming Strategy and automatically populating data


Task:
Example to demonstrate Auto-generation of tables, Naming strategy and automatically populating data in ColdFusion-ORM

Previous Related Posts:
Getting Started with ORM
ColdFusion-ORM: Using CRUD Functions
ColdFusion-ORM: Define One-to-Many and Many-to-one relationships
ColdFusion-ORM: Collections
ColdFusion-ORM: Define Computed Properties

Stuff that you would learn:
- To auto-generate tables in ORM
- To fill data into the auto-generated tables
- To use the DDL-only attributes
- To define custom Naming Strategy

Steps to Run the example:
-  Create a datasource by name ‘test_datasource’ pointing to a empty database. Note that the example will take care of creating the tables and populating data into it.
-  Create a directory say "orm_autogen" under webroot.
-  Create the following files – Application.cfc, Art.cfc, Artists.cfc, mysqlscript.sql, lcasestrategy.cfc and index.cfm.
-  Run the URL “http://<ip>:<port>/orm_autogen/index.cfm”

Application.cfc

<cfcomponent>
    <cfset this.name = "ORM_Autogen">
    <cfset this.ormenabled = "true">
    <!---
    * 'test_datasource' is a datasource which should be created
    * as a pre-requisite for this example. Artists table contains
    --->
    <cfset this.datasource = "test_datasource">

    <!---
    * To auto-generate tables, dbcreate should be specified.
    * dbcreate is 'none' by default.
    * It can be 'dropcreate' or 'update'.
    * Setting it to 'update' creates the table if it does not
    * exist or update the table if it exists.
    * Setting it to 'dropcreate' drops the table if it
    * exists and then creates it.
    --->
    <cfset this.ormsettings.dbcreate = "dropcreate">

    <!---
    * Path to the SQL script file that should be executed after
    * ORM is initialized.
    * Note that this applies only if dbcreate is set to dropcreate.
    * This must be the absolute file path or the path relative
    * to the application.
    * The SQL script file lets you populate the tables before
    * the application is accessed.
    --->
    <cfset this.ormsettings.sqlscript="mysqlscript.sql">

    <!---
    * (Logical column name is the name of the property OR the value
    * of the column attribute if specified)
    * By default, when auto-generating the tables, the logical column
    * name is used as the column name.
    * If you want to change it, you should use the namingstrategy setting.

    * By default, namingstrategy="default". 

    * namingstrategy="smart": This strategy changes the logical table or
    * column name to uppercase. Also, if the logical table or column name
    * is in camel case, this strategy breaks the camelcased name and separates
    * the broken words using '_'.
    * For eg: firstName -> FIRST_NAME, dateOfBirth -> DATE_OF_BIRTH.

    * If you want to use a custom strategy, then, you should create a CFC,
    * implement the cfide.orm.INamingStrategy interface and specify the CFC
    * name for this setting.  In this example, I have demonstrated the
    * custom strategy.
    --->
    <cfset this.ormsettings.namingstrategy="lcasestrategy">
</cfcomponent>

Art.cfc

<cfcomponent persistent="true" table="Art">
      <cfproperty name="artId" generator="identity" fieldtype="id">
    <!---
    * Note that the attributes 'ormtype' and 'length' are used
    * only when the tables are auto-generated.  There are other
    * similar attributes like dbdefault, index, notnull, precision,
    * scale, sqltype, unique and uniquekey.
    --->
      <cfproperty name="artName" ormtype="string" length="50">
      <cfproperty name="price" ormtype="double">
      <cfproperty name="largeImage" ormtype="string" length="30">
      <cfproperty name="mediaId" ormtype="integer" length="10">
      <cfproperty name="isSold" ormtype="boolean" dbdefault=1>
      <cfproperty name="artist" fkcolumn="artistid" fieldtype="many-to-one" cfc="Artists">
</cfcomponent>

Artists.cfc

<cfcomponent persistent="true" table="Artists">
      <cfproperty name="artistId" fieldtype="id" ormtype="integer" length=10>
      <cfproperty name="firstName" ormtype="string" length="20" notnull="true">
      <cfproperty name="lastName" ormtype="string" length="20" notnull="true">
      <cfproperty name="address"  ormtype="string" length="50">
      <cfproperty name="city" ormtype="string" length="20">
      <cfproperty name="state" ormtype="string" length="2">
      <cfproperty name="postalCode" ormtype="string" length="10">
      <cfproperty name="email" ormtype="string" length="50" unique="true">
      <cfproperty name="phone" ormtype="string" length="20">
      <cfproperty name="fax" ormtype="string" length="12">
      <cfproperty name="thePassword" ormtype="string" length="20">
</cfcomponent>

lcasestrategy.cfc

<cfcomponent implements="cfide.orm.INamingStrategy">
    <!---
    * ColdFusion calls this method for each table name to generate
    * the new table name. The logical table name is the input.
    --->
    <cffunction name="getTableName" returntype="String" access="public">
        <cfargument name="tableName" type="String"> 

        <cfreturn lCase(tableName)> 

    </cffunction>

    <!---
    * ColdFusion calls this method for each column name to generated the
    * new column name. The logical column name is the input.
    --->
    <cffunction name="getColumnName" returntype="String" access="public">
        <cfargument name="columnName" type="String">

        <cfreturn lCase(columnName)> 

    </cffunction>
</cfcomponent>

mySQLScript.sql

--This SQl script will be automatically executed after the tables are auto-generated.
--Note that each SQL should be separated by a ';'.
insert into Artists(artistid, firstname, lastname, address, city, state, postalcode, email, phone, fax, thepassword)
values(1, 'Aiden', 'Donolan', '352 Corporate Ave.', 'Denver', 'CO', '80206-4526', 'aiden.donolan@donolan.com', '555-751-8464', '555-751-8463', 'peapod');
insert into Artists(artistid, firstname, lastname, address, city, state, postalcode, email, phone, fax, thepassword)
values(2, 'Austin', 'Weber', '25463 Main Street, Suite C', 'Berkeley', 'CA', '94707-4513', 'austin@life.com', '555-513-4318', '510-513-4888', 'nopolyes');
insert into Art(artname, price, largeimage, mediaid, issold, artistid)
values('Michael', 13900, 'aiden02.jpg', 1, 0, 1);
insert into Art(artname, price, largeimage, mediaid, issold, artistid)
values('Space', 9800, 'elecia01.jpg', 2, 1, 2);

index.cfm

<!---
* This example demonstrates Auto-generation of tables.
* This example will teach you
* - how to auto-generate tables in ORM
* - to fill data into the auto-generated tables
* - DDL-only attributes
* - how to use custom Naming Strategy

* 'test_datasource' is a datasource which should be created
* as a pre-requisite for this example. Artists table contains
* a list of artists records.  Art table contains a list of art
* records.  Artists table has a one-to-many relationship with
* Art table. These table would be created used in this example.
--->

<!---Load the artists and dump it--->
<cfdump var="#EntityLoad("Artists")#">





Comments



1
Author:  Phillip Senn | Date:  October 12, 2009 | Time:  4:22 AM

Manju,

This blog post helped me, and I did some more output to learn a little more:

#X[1].getLargeImage()#
#X[1].getArtist().getFirstName()#

I also added a 3rd record to the test dataset so that there would be a one-to-many in the data:
insert into Art(artname, price, largeimage, mediaid, issold, artistid) values(’Mary’,1200,’aiden05.jpg’,1,0,1);

2
Author:  Phillip Senn | Date:  October 12, 2009 | Time:  4:24 AM

The output from my previous post is missing some of the lines of code, so I’m pasting it again with & lt; instead of the
<cfoutput>
#X[1].getLargeImage()#<br />
#X[1].getArtist().getFirstName()#<br />
</cfoutput>
<cfdump var=”#X[1].getArtist()#”>
<cfdump var=”#X[1]#”>
<cfdump var=”#X#”>

3
Author:  Manjukiran | Date:  October 13, 2009 | Time:  1:03 PM

Phillip, Nice to hear that the blog post helped you!

4
Author:  Cat H1N1 » Blog Archive » Best of CF9: Collyba | Date:  January 13, 2010 | Time:  3:30 AM

[...] While this works, don’t forget that ColdFusion 9 ORM also supports seeding databases. You can see an example of this here: ColdFusion-ORM: Auto-generation of tables, Naming Strategy and automatically populating data [...]

5
Author:  Sex Dates | Date:  July 31, 2010 | Time:  12:33 AM

Thanks for posting. I saw your site in google and I’m glad I found it. I will be back to read more soon.

6
Author:  Sam Weber | Date:  July 23, 2011 | Time:  11:55 PM

What an amazing blog. Continue posting, and I am going to visit here again next time. Thank you

7
Author:  weber q320 | Date:  November 6, 2011 | Time:  9:19 PM

Nice blog; keep it going and you will make a difference in the world.

8
Author:  Al Everett | Date:  February 24, 2012 | Time:  8:07 PM

Is “state” some sort of reserved word now? In trying to do this with the ColdFusion 10 beta, I’m getting this error:

Error in importing SQL script – Error at line 4 in file mysqlscript.sql. ‘STATE’ is not a column in table or VTI ‘APP.ARTISTS’.

However, if I change the name of the property to “st” (for instance) and adjust the SQL, everything works fine.

9
Author:  John Mixer | Date:  March 3, 2012 | Time:  1:39 AM

I’m having the same problem with CF10. did you ever sort it out?

10
Author:  Weber | Date:  May 11, 2012 | Time:  9:53 PM

Thanks for the info. I found it useful



Write a Comment

Note: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>