Content deleted Content added
No edit summary |
mNo edit summary |
||
Line 6:
<cfquery name="nameofquery" datasource="odbc_connection" username="simple" password="enough">
Select * from table
where field = 'whateveryouaresearchingfor'
</cfquery>
<cfoutput query="nameofquery">
#field_from_query#
<!--- Above is called a variable, this text here is just comments !--->
</cfoutput>
|