cfdbinfo - get system table name list from a datasource
cfdbinfoSystemTableList.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ColdFusion cfdbinfo tag example: how to get system table name list from a datasource</title>
</head>
<body>
<h2 style="color:DodgerBlue">ColdFusion cfdbinfo tag example: System Table List</h2>
<cfdbinfo datasource="cfartgallery" type="tables" name="qResult">
<cfquery dbtype="query" name="qSystemTableList">
SELECT TABLE_NAME FROM qResult
WHERE TABLE_TYPE='SYSTEM TABLE'
</cfquery>
<cfdump var="#qSystemTableList#">
</body>
</html>
- cfdbinfo - get table name list from a datasource
- cfdbinfo - get column list from a table
- cfgrid - display data in a flash format grid
- cfgrid - display data in a applet format grid
- cfgrid - display data in a html format grid
- cflocation - redirect a page with token
- cfinvoke - invoke a method of a component
- cfinvoke and cfinvokeargument - invoke a method of a component
- cfquery - insert data