From 753b838216316509ba5069ce44214630042bd33d Mon Sep 17 00:00:00 2001 From: pixel Date: Thu, 12 Apr 2007 18:10:59 +0000 Subject: Adding error message support. --- lib/SQL.cc | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib') diff --git a/lib/SQL.cc b/lib/SQL.cc index 98b8824..3234ffd 100644 --- a/lib/SQL.cc +++ b/lib/SQL.cc @@ -87,4 +87,12 @@ int SQLConnection::insertid() { return ii; } +int SQLConnection::errno() { + return mysql_errno(&con); +} + +String SQLConnection::error() { + return mysql_error(&con); +} + #endif -- cgit v1.2.3