diff options
| author | 2006-07-21 08:37:42 +0000 | |
|---|---|---|
| committer | 2006-07-21 08:37:42 +0000 | |
| commit | 2c6c072c1f5f19d1471feb43fa94bba0030e5fb6 (patch) | |
| tree | ef8a94f1495cffad286323c3b959c93463d54ab7 /src/modules/extra/m_testclient.cpp | |
| parent | Slight tidyup: type name = type(args); --> type name(args); (diff) | |
API header and client module updates for new multi-parameter query request. Needs proper implementation in m_pgsql and documentation
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4471 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_testclient.cpp')
| -rw-r--r-- | src/modules/extra/m_testclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_testclient.cpp b/src/modules/extra/m_testclient.cpp index 3cd4742c9..069c21c0b 100644 --- a/src/modules/extra/m_testclient.cpp +++ b/src/modules/extra/m_testclient.cpp @@ -35,7 +35,7 @@ public: if(target) { - SQLrequest foo(this, target, "SELECT foo, bar FROM rawr", "foo"); + SQLrequest foo = SQLreq(this, target, "foo", "SELECT foo, bar FROM ?", "rawr"); if(foo.Send()) { |
