Just a quick question. Is it possible to pass form data to a sql statement. For example: on one page a drop down list with a list of the different databases and another area for the table. Can these be passed to the SQL statement with something like:
<cfquery name="getinfo" datasource="#FORM.database#">
SELECT * FROM '#FORM.Table#'
</cfquery>
Thanks
<cfquery name="getinfo" datasource="#FORM.database#">
SELECT * FROM '#FORM.Table#'
</cfquery>
Thanks