> I have an Aircraft_Invocations.cfm in my test directory, that is script > based. Where are the tag based?
The tag-based invocations should be in there, too. > 1. I have a Plum project done using the standard Plum generated pages > for each module. In some cases they have been modified, but are all > using the Plum custom tags for maintenance. > 2. I have converted them to cfmodule calls using the cf2cfmodule > utility. Everything is working great, so I decide to move from using > the cfquery calls in DatabaseBlocks.cfc (default mode) to SPs as a test > and to play around.. > 3. I generate the stored procedures from Plum, and create components. > They are all there. Just not sure how to 'invoke' the calls to the > component methods from the Plum tags/objects (DisplayList, etc). Adding the query="#yourQueryName#" attribute to cf_DisplayList will bypass DatabaseBlocks.cfc in favor of the query object referenced, which can be supplied from anywhere, like a call to the component invocation or GetQueryStub(). If you want to bypass DatabaseBlocks.cfc for add, edit, and delete forms, just modify your action pages such that you keep the ValidateForm and ValidateInput custom tag calls, but replace the InsertRecord, UpdateRecord, or DeleteRecord custom tags and their associated child tags with the invocation call to your stored procedure. > This is the part I don't get. I see where everyting is, how do I plug > it into the forms I have? I must be doing some bass akwards here. In addition to this instruction, I have just added an extra tutorial to Plum Help that teaches developers how to retrofit Plum applications to use stored procedures. Do you see what your input gets you? We really want Plum to be what the ColdFusion developer community wants in a RAD tool, so we'll respond quickly to what we can and plan to tackle we immediately can't. Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive Training: * C# & ASP.NET for ColdFusion Developers * ColdFusion MX Master Class * Advanced Development with CFMX and SQL Server 2000 http://www.ColdFusionTraining.com Download CommerceBlocks V2.1 and LoRCAT from http://www.ProductivityEnhancement.com The ColdFusion MX Bible is in bookstores now!
