summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure2
-rw-r--r--src/modules/extra/m_sqlv2.h11
2 files changed, 12 insertions, 1 deletions
diff --git a/configure b/configure
index 1245f2b61..7d962d17c 100755
--- a/configure
+++ b/configure
@@ -294,6 +294,7 @@ sub clean
sub update
{
+ getmodules();
# Does the cache file exist?
if (!getcache()) {
# No, No it doesn't.. *BASH*
@@ -313,6 +314,7 @@ sub update
sub modupdate
{
+ getmodules();
# Does the cache file exist?
if (!getcache()) {
# No, No it doesn't.. *BASH*
diff --git a/src/modules/extra/m_sqlv2.h b/src/modules/extra/m_sqlv2.h
index bce437858..76d39a8f6 100644
--- a/src/modules/extra/m_sqlv2.h
+++ b/src/modules/extra/m_sqlv2.h
@@ -30,6 +30,13 @@ typedef std::deque<std::string> ParamL;
*/
class SQLexception : public ModuleException
{
+ SQLexception(const std::string &reason) : ModuleException(reason)
+ {
+ }
+
+ SQLexception() : ModuleException("SQLv2: Undefined exception")
+ {
+ }
};
/** An exception thrown when a bad column or row name or id is requested
@@ -37,7 +44,9 @@ class SQLexception : public ModuleException
class SQLbadColName : public SQLexception
{
public:
- SQLbadColName() { }
+ SQLbadColName() : SQLexception("SQLv2: Bad column name")
+ {
+ }
};
/** SQLerror holds the error state of any SQLrequest or SQLresult.