summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-04-14 13:50:29 -0700
committerPixel <pixel@nobis-crew.org>2009-04-14 13:50:29 -0700
commit5f063693f29ba58c4253f8b1f602a6e826e94e85 (patch)
treef954f05bb5fbdfed035f6f61972a266a6c11d4ff /include
parente5183bb68d23dae659e79566624bb7d095e0df33 (diff)
Having the ability to mask off OCCI'S SQLException and return the codes instead.
Diffstat (limited to 'include')
-rw-r--r--include/LuaOCCI.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/LuaOCCI.h b/include/LuaOCCI.h
index 683d60e..af446a6 100644
--- a/include/LuaOCCI.h
+++ b/include/LuaOCCI.h
@@ -12,6 +12,9 @@ class EncapOCCI_##clname : public Base { \
EncapOCCI_##clname(oracle::occi::clname * _o) : o(_o) { } \
~EncapOCCI_##clname() { } \
oracle::occi::clname * Get() { return o; } \
+ bool disableExceptions; \
+ String lastError_msg; \
+ int lastError_code; \
private: \
oracle::occi::clname * o; \
}; \