Object null but read as empty? - Peter Bradley |
29-Mar-07 06:25:27
|
The {} represents DbNull, I think. If I'm right, you'll need to check for
DbNull and not for null.
Cheers
Peter |
 |
| |
Object null but read as empty? - Ignacio Machin \( .NET/ C# MVP \) |
29-Mar-07 08:58:55
|
Hi,
Cause a "null" ni the DB is interpreted as DBNull.Value in the code.
Check for DBNull.Value instead |
 |
| |