diff options
author | unknown <vva@eagle.mysql.r18.ru> | 2003-05-29 17:47:31 -0400 |
---|---|---|
committer | unknown <vva@eagle.mysql.r18.ru> | 2003-05-29 17:47:31 -0400 |
commit | 69e084af1eedff2dda70fcf073dd4fa349718b69 (patch) | |
tree | a9f85257a75430a22735e52666cbf25e605ea2bb /sql/protocol.h | |
parent | f440077bd03869f48ff278bc2b73fab7a30e282b (diff) | |
download | mariadb-git-69e084af1eedff2dda70fcf073dd4fa349718b69.tar.gz |
new version of help
Diffstat (limited to 'sql/protocol.h')
-rw-r--r-- | sql/protocol.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/protocol.h b/sql/protocol.h index 2110f1877c2..ffd61b3e848 100644 --- a/sql/protocol.h +++ b/sql/protocol.h @@ -60,6 +60,8 @@ public: { return store_longlong((longlong) from, 0); } inline bool store(ulonglong from) { return store_longlong((longlong) from, 1); } + inline bool store(String *str) + { return store(str->c_ptr(),str->length(),str->charset()); } virtual bool prepare_for_send(List<Item> *item_list) { |