diff --git a/uppsrc/Sql/SqlCase.cpp b/uppsrc/Sql/SqlCase.cpp index 08a793742..abef5c93a 100644 --- a/uppsrc/Sql/SqlCase.cpp +++ b/uppsrc/Sql/SqlCase.cpp @@ -16,7 +16,6 @@ String MakeSqlValue(int code, T& value) template T ReadSqlValue(T& x, const char *&s) { memcpy(&x, s, sizeof(T)); - DUMPHEX(String(s, sizeof(T))); s += sizeof(T); return x; } @@ -373,7 +372,6 @@ String SqlFormat(Date x) String SqlFormat(Time x) { - DUMPHEX(MakeSqlValue(SQLC_TIME, x)); return MakeSqlValue(SQLC_TIME, x); }