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) ...@@ -893,12 +893,12 @@ copy_statement_with_parameters(StatementClass *stmt)
break; break;
case SQL_C_DOUBLE: case SQL_C_DOUBLE:
sprintf(param_string, "%15g", sprintf(param_string, "%.15g",
*((SDOUBLE *) buffer)); *((SDOUBLE *) buffer));
break; break;
case SQL_C_FLOAT: case SQL_C_FLOAT:
sprintf(param_string, "%6g", sprintf(param_string, "%.6g",
*((SFLOAT *) buffer)); *((SFLOAT *) buffer));
break; 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