Skip to content
Snippets Groups Projects
Commit 7bba7a5c authored by Hiroshi Inoue's avatar Hiroshi Inoue
Browse files

Sorry my previous change was a mistake.

parent 54329ac4
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment