mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
SqlBinary changed to work as SqlCompile type -> it now should work in PGSQL too
git-svn-id: svn://ultimatepp.org/upp/trunk@1232 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
b4fa5709a8
commit
951d74e221
5 changed files with 64 additions and 7 deletions
|
|
@ -539,7 +539,7 @@ String HexString(const byte *s, int count, int sep)
|
|||
|
||||
String HexString(const String& s, int sep)
|
||||
{
|
||||
return HexString(s, s.GetCount(), sep);
|
||||
return HexString(~s, s.GetCount(), sep);
|
||||
}
|
||||
|
||||
String NormalizeSpaces(const char *s)
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ String Encode64(const String& s);
|
|||
String Decode64(const String& s);
|
||||
|
||||
String HexString(const byte *s, int count, int sep = INT_MAX);
|
||||
inline String HexString(const char *s, int count, int sep = INT_MAX) { return HexString((byte *)s, count, sep); }
|
||||
inline String HexString(const void *s, int count, int sep = INT_MAX) { return HexString((byte *)s, count, sep); }
|
||||
String HexString(const String& s, int sep = INT_MAX);
|
||||
|
||||
#ifdef PLATFORM_WINCE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue