How to check whether a dataset is strongly typed or not?

G

Guest

When I'm debugging a Windows Forms Application in VS2005 IDE, how can I check
whether a dataset is strongly typed or not in Watch window? Are there some
properties or methods only exist for strongly typed dataset?
 
M

Michel Posseth [MCP]

A strongly typed dataset has field descriptors and datatypes asociated with
it, a "Weak, Untyped " dataset must be accessed with field indexes (
accessible by position number, or field name ) and all field values are of
the object type and must be casted to the right datatypes





HTH

Michel
 
G

Guest

Hi Michel,

Thanks. I believe you're saying that the objects and collections of
untyped dataset need to be accessed with field indexes. So far, I only find
column value being object type.


Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top