Commit 7bba7a5c authored by Hiroshi Inoue's avatar Hiroshi Inoue

Sorry my previous change was a mistake.

parent 54329ac4
......@@ -893,12 +893,12 @@ copy_statement_with_parameters(StatementClass *stmt)
break;
case SQL_C_DOUBLE:
sprintf(param_string, "%15g",
sprintf(param_string, "%.15g",
*((SDOUBLE *) buffer));
break;
case SQL_C_FLOAT:
sprintf(param_string, "%6g",
sprintf(param_string, "%.6g",
*((SFLOAT *) buffer));
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment