I am using the following code to find the fields within a database in access:
<cfquery name="test" datasource="#datasource#" dbtype="ODBC">
Select *
From coordinatortbl
</cfquery>
<cfloop index="FormFieldName" list="#test.columnlist#">
<cfoutput>
#FormFieldName#<br>
</cfoutput>
</cfloop>
could some one tell me how to find the data types of these fields. I found how to do it in sql and I do not think the information is in the msys tables hidden within the database.
<cfquery name="test" datasource="#datasource#" dbtype="ODBC">
Select *
From coordinatortbl
</cfquery>
<cfloop index="FormFieldName" list="#test.columnlist#">
<cfoutput>
#FormFieldName#<br>
</cfoutput>
</cfloop>
could some one tell me how to find the data types of these fields. I found how to do it in sql and I do not think the information is in the msys tables hidden within the database.