#include <SQLite3ClientPlugin.h>

Public Member Functions | |
| void | AddResultHandler (SQLite3PluginResultInterface *res) |
| unsigned int | _sqlite3_exec (RakNet::RakString dbIdentifier, RakNet::RakString inputStatement, PacketPriority priority, PacketReliability reliability, char orderingChannel, SystemAddress systemAddress) |
| virtual PluginReceiveResult | OnReceive (Packet *packet) |
| unsigned int RakNet::SQLite3ClientPlugin::_sqlite3_exec | ( | RakNet::RakString | dbIdentifier, | |
| RakNet::RakString | inputStatement, | |||
| PacketPriority | priority, | |||
| PacketReliability | reliability, | |||
| char | orderingChannel, | |||
| SystemAddress | systemAddress | |||
| ) |
Execute a statement on the remote system
| [in] | dbIdentifier | Which database to use, added with AddDBHandle() |
| [in] | inputStatement | SQL statement to execute |
| [in] | priority | See RakPeerInterface::Send() |
| [in] | reliability | See RakPeerInterface::Send() |
| [in] | orderingChannel | See RakPeerInterface::Send() |
| [in] | systemAddress | See RakPeerInterface::Send() |
| void RakNet::SQLite3ClientPlugin::AddResultHandler | ( | SQLite3PluginResultInterface * | res | ) |
Add an interface to get callbacks for results Up to user to make sure the pointer is valid through the lifetime of use
| virtual PluginReceiveResult RakNet::SQLite3ClientPlugin::OnReceive | ( | Packet * | packet | ) | [virtual] |
OnReceive is called for every packet.
| [in] | packet | the packet that is being returned to the user |
Reimplemented from PluginInterface2.
1.5.7.1