When accessing an object in a DataTable retrieved from a database, are there any reasons not to cast the object into your desired type, or are there reasons to use convert? I know the rule is cast when we know what data type we're working with, and convert when attempting to change the data type to something it isn't. Presuming we know what data type is stored in a column, cast seems appropriate, but are there any DB type issues that mean we can't rely on this?
|
|
I would always cast, for the reasons you state. The gotchas I'm aware of that you need to handle are:
or
|
|||
|
|
|
|
Both Syntax for CAST:
Syntax for CONVERT:
|
||
|
|
|
|
When retreiving from RDBMS you should let the database driver handle marshalling between native and requested type. CAST is sanctioned by SQL standards and works on the highest number of RDBMS platforms. CONVERT is avaliable on fewer platforms. If you have multi-platform conciderations CONVERT should only be used for special cases such as custom formatting that cannot be accomplished with CAST. |
||
|
|
