Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Trying to increment a DataRow field
Message
From
24/01/2005 17:04:43
 
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00980205
Message ID:
00980209
Views:
39
Gerard,

DataRow columns are objects. You need to cast it to an int before you attempt to add to it.
dr["num_nexta"] = (int)dr["num_nexta"] + 1;
~~Bonnie


>Hi.
>I am trying to add 1 to a datarow field as follows:
>
>dr["num_nexta"] = dr["num_nexta"] + 1;
>
>.. it comes up with an eror : Operator + cannot be applied to operannds of type object and int
>
>however :
>
>dr["num_nexta"] = 123 is ok.
>
>Anybody know what I am doing wrong ?
>
>regards,
>
>Gerard
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform