darck
darck
CC#
Created by darck on 12/16/2023 in #help
Crazy database results I can't manage to debug.
I might tell that to my college teacher, after I'm done with the assignement that is
8 replies
CC#
Created by darck on 12/16/2023 in #help
Crazy database results I can't manage to debug.
oh thanks
8 replies
CC#
Created by darck on 12/16/2023 in #help
Crazy database results I can't manage to debug.
sorry for the formatting, this is probably not great but it seems to dot he trick, I haven't found anything when typing GetX into my IDE and when googling (GetX() methods C#) it get java related things.
8 replies
CC#
Created by darck on 12/16/2023 in #help
Crazy database results I can't manage to debug.
int id;
object objId = reader["id"];
if (objId is long)
{
id = (int)(long)objId;
}
else
{
id = (int)objId;
}
int id;
object objId = reader["id"];
if (objId is long)
{
id = (int)(long)objId;
}
else
{
id = (int)objId;
}
8 replies