View Full Version : ColdFusion - Any other coders?
DariusMonsef
February 5th, 2003, 05:06 PM
Didn't see ColdFusion listed as one of the discussion areas.
Any other ColdFusion programmers out there?
I've got a little experience with CF and I'd be happy to try and answer any questions.
Regards.
my3brs
June 26th, 2003, 12:09 AM
okay thnx
DariusMonsef
June 26th, 2003, 12:21 AM
was there a question? do you code CF?
lostinbeta
June 26th, 2003, 12:28 AM
Ethan, great offer. I personally don't code CF, but occasionally (very rarely) a question gets asked here about it. Something like that goes in the Server-Side/Scripting section.
Unfortunately there is no where near enough people to create a section for it.
DariusMonsef
June 26th, 2003, 12:35 AM
well maybe we could have "Kirupa" add a list of people and what they speciaqlize in, to aqct as some sort of resource for fellow members.
For Example, Me - Cold Fusion & SQL
Digitalosophy
June 26th, 2003, 05:15 PM
Ethan, i recently started to code coldfusion. I woudl love to see some tutes, or even a section on Coldfusion and Flash Remoting. it's hard for me cuz I really don't knwo many peopel who use these techniques, so when I get stuck there is no help, and the help that is out there, is way too complex for a noob liek myself.
Hope to see more of you
DariusMonsef
June 26th, 2003, 09:32 PM
I'm suprised more people here don't use CF as it is also a macromedia product. Anyway, post questions if you got them. I'll give it my best shot.
ahmed
June 26th, 2003, 09:34 PM
hm.. can you give a sample script to connect to a mysql database? i would REALLY appreciate that :)
Jubba
June 26th, 2003, 09:41 PM
I don't have a CF enabled server. :( Or I would use it.
DariusMonsef
June 26th, 2003, 09:48 PM
ahmed,
Not sure exactly how to answer that. Do you mean the CF tag to query the mySQL, or the mySQL state ment to select something?
My expertise is in SQL Server and CF, but I'm gonna guess mySQL and SQL are similar.
Either way.
You should be able to query your DB with this:
<cfquery name="GetSomething" datasource="#Request.DataSource#" username="#Request.DataSourceLogin#" password="#Request.DataSourcePass#" dbname="#Request.dbname#">
SELECT * FROM MyTable
WHERE Something = Something
</cfquery>
You can hand code in the values for the CFQUERY tag but I usually jsut set them in the application file like:
<cfset Request.DataSource="Your Data Source Namae">
<cfset Request.DataSourceLogin="Login">
<cfset Request.DataSourcePass="Password">
<cfset Request.dbname="MyDBName">
You will also need to create the datasource and point it to the right database in your coldfusion server administrator area.
Regards.
DariusMonsef
June 26th, 2003, 09:51 PM
Jubba,
Someone posted a CF question on the vector forum. Can you move it over?
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.