Column DataType!
am 16.09.2005 22:06:39 von ArpanHow do I find out what is the datatype of a particular column in an
Access database file using ASP?
Thanks,
Arpan
How do I find out what is the datatype of a particular column in an
Access database file using ASP?
Thanks,
Arpan
<%
For iLoop=0 To objRS.Fields.Count-1
Response.Write("Type: " & objRS.Fields(iLoop).Type)
Next
%>
Arpan