-
Problem running ASP page
hello,
i want to be able to view the description of the column name in SQL
for example when i open recordset, i use the following
rs - recordset
---> rs.fields(column name).value
in my script.
If I want to view description of column, what is the property i can use?
Suggestions? sample if have one?
regards,
Giovanna
-
Re: Problem running ASP page
Hello,
One of the properties you are looking for is Type.
rs.Fields("colimn name").Type
This will return an integer which is DataTypeEnum.
Type is read/write property.
Take a look for other Field properties like Size, Precision, etc.
http://msdn.microsoft.com/library/de...k/mdao2o9w.htm
Also look for interpretation of returned integers:
http://msdn.microsoft.com/library/de...k/mdae8o19.htm
Hope this helps.
D.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks