Public Member Functions | |
Cached (sql::ResultSet &rs) | |
virtual bool | sendFields (List< Item > *list) |
virtual void | sendError (drizzled::error_t error_code, const char *error_message) |
virtual void | checkRowEnd () |
virtual bool | store (Field *from) |
virtual bool | store () |
virtual bool | store (int32_t from) |
virtual bool | store (uint32_t from) |
virtual bool | store (int64_t from) |
virtual bool | store (uint64_t from) |
virtual bool | store (double from, uint32_t decimals, String *buffer) |
virtual bool | store (const char *from, size_t length) |
uint32_t | currentColumn () const |
virtual int | getFileDescriptor (void) |
virtual bool | isConnected (void) |
virtual bool | isReading (void) |
virtual bool | isWriting (void) |
virtual bool | flush (void) |
virtual void | close (void) |
virtual bool | authenticate (void) |
virtual bool | readCommand (char **packet, uint32_t *packet_length) |
virtual void | sendOK (void) |
virtual void | sendEOF (void) |
virtual bool | store (const type::Time *) |
virtual bool | store (const char *) |
virtual bool | store (const std::string &) |
virtual bool | haveMoreData (void) |
virtual bool | haveError (void) |
virtual bool | wasAborted (void) |
void | pushSQL (const std::string &arg) |
virtual Session * | getSession (void) |
virtual void | setSession (Session *session_arg) |
virtual bool | isConsole () const |
virtual bool | isInteractive () const |
virtual bool | isAdmin () const |
virtual catalog::Instance::shared_ptr | catalog () |
Protected Attributes | |
Session * | session |
Private Attributes | |
uint32_t | column |
uint32_t | max_column |
sql::ResultSet * | _result_set |
virtual bool drizzled::plugin::client::Concurrent::authenticate | ( | void | ) | [inline, virtual, inherited] |
Perform handshake and authorize client if needed.
Implements drizzled::plugin::Client.
Definition at line 59 of file concurrent.h.
virtual void drizzled::plugin::client::Concurrent::close | ( | void | ) | [inline, virtual, inherited] |
Close the client object.
Implements drizzled::plugin::Client.
Definition at line 58 of file concurrent.h.
virtual bool drizzled::plugin::client::Concurrent::flush | ( | void | ) | [inline, virtual, inherited] |
Flush all data that has been buffered with store() methods.
Boolean | indicating success or failure. |
Implements drizzled::plugin::Client.
Definition at line 57 of file concurrent.h.
virtual int drizzled::plugin::client::Concurrent::getFileDescriptor | ( | void | ) | [inline, virtual, inherited] |
Get file descriptor associated with client object.
File | descriptor that is attached, -1 if none. |
Implements drizzled::plugin::Client.
Definition at line 53 of file concurrent.h.
virtual Session* drizzled::plugin::Client::getSession | ( | void | ) | [inline, virtual, inherited] |
virtual bool drizzled::plugin::client::Concurrent::isConnected | ( | void | ) | [inline, virtual, inherited] |
Check to see if the client is currently connected.
Boolean | value representing connected state. |
Implements drizzled::plugin::Client.
Definition at line 54 of file concurrent.h.
virtual bool drizzled::plugin::client::Concurrent::isReading | ( | void | ) | [inline, virtual, inherited] |
Check to see if the client is actively reading.
Boolean | value representing reading state. |
Implements drizzled::plugin::Client.
Definition at line 55 of file concurrent.h.
virtual bool drizzled::plugin::client::Concurrent::isWriting | ( | void | ) | [inline, virtual, inherited] |
Check to see if the client is actively writing.
Boolean | value representing writing state. |
Implements drizzled::plugin::Client.
Definition at line 56 of file concurrent.h.
virtual bool drizzled::plugin::client::Concurrent::readCommand | ( | char ** | packet, |
uint32_t * | packet_length | ||
) | [inline, virtual, inherited] |
Read command from client.
Implements drizzled::plugin::Client.
Definition at line 61 of file concurrent.h.
virtual bool drizzled::plugin::client::Cached::sendFields | ( | List< Item > * | list | ) | [inline, virtual] |
Send field list for result set.
Reimplemented from drizzled::plugin::client::Concurrent.
virtual void drizzled::plugin::Client::setSession | ( | Session * | session_arg | ) | [inline, virtual, inherited] |