i try to insert data in database, but i have a problem.
example:
double price = 12,55;
mySelectQuery =
"INSERT INTO order (total)" +
"VALUES (" + price+ ");";
now price are 2 values because the ",". now C# see 12 and 55.
so a get a error that a have to many values.
what is the solution?