.removed DUMPs

git-svn-id: svn://ultimatepp.org/upp/trunk@7755 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-10-02 16:10:05 +00:00
parent e31df73a27
commit f278bf1b8f

View file

@ -16,7 +16,6 @@ String MakeSqlValue(int code, T& value)
template <class T>
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);
}