diff options
author | randomdan <randomdan@localhost> | 2010-06-11 09:03:42 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2010-06-11 09:03:42 +0000 |
commit | 1df33cc9d9a7804c78788d5717435ede44855ca0 (patch) | |
tree | b78e66de0a9f7d6bb39038d6f628cbc871ffa652 /libodbcpp/ustring.h | |
parent | Initial workings of project2 - renders gentoobrowse homepage (diff) | |
download | libdbpp-odbc-1df33cc9d9a7804c78788d5717435ede44855ca0.tar.bz2 libdbpp-odbc-1df33cc9d9a7804c78788d5717435ede44855ca0.tar.xz libdbpp-odbc-1df33cc9d9a7804c78788d5717435ede44855ca0.zip |
Use Glib::ustring in libodbcpp for data and std::string for non-data
Add support for parameters in SqlViews
Uses parameters to implement category browse and search
Diffstat (limited to 'libodbcpp/ustring.h')
-rw-r--r-- | libodbcpp/ustring.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libodbcpp/ustring.h b/libodbcpp/ustring.h deleted file mode 100644 index d3c4d41..0000000 --- a/libodbcpp/ustring.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef ODBC_STRING_H -#define ODBC_STRING_H - -#include <string> - -namespace ODBC { - class String : public std::basic_string<unsigned char> { - public: - String(const unsigned char *); - String(const char *); - String(std::basic_string<unsigned char>); - String(std::basic_string<char>); - String(); - operator unsigned char *() const; - - static String Format(const char *, ...); - }; -} - -#endif - |