Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<cfquery name="ALLDATABASES" datasource="MYSOURCE">
SELECT * FROM ALL_TABLES
</cfquery>
<cfquery name="GetDatabases" datasource="MYSOURCE">
SELECT name FROM sysobjects WHERE type = 'U'
</cfquery>
<CFQUERY name="GetColumns" datasource="MYSOURCE">
SELECT * FROM #whichtable#
</CFQUERY>
<CFSET mycolumnlist = #GetColumns.ColumnList#>