M
Martin Groh
I have a weird bug reading a tinyint for a MySQL database.
I have this line in my code
jig.init = row.Field<bool>("initilizing");
Witch was working fine until a little while ago. But now I'm getting an runtime error saying can't use SByte as ......
Still the same program runs fine on another machine.
I then change the line to
jig.init = row.Field<SByte>("initilizing") == 1;
Now it works on my machine, but not the other one.
Both machines use .net 3.5
Any ideas?
regards Martin
I have this line in my code
jig.init = row.Field<bool>("initilizing");
Witch was working fine until a little while ago. But now I'm getting an runtime error saying can't use SByte as ......
Still the same program runs fine on another machine.
I then change the line to
jig.init = row.Field<SByte>("initilizing") == 1;
Now it works on my machine, but not the other one.
Both machines use .net 3.5
Any ideas?
regards Martin