mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / storage / ndb / src / ndbapi / Ndberr.cpp
blob7012050df1c9426fe90aef8754b9911b7e861d0e
1 /* Copyright (c) 2003-2006 MySQL AB
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
17 #include <NdbError.hpp>
18 #include "NdbImpl.hpp"
19 #include "NdbDictionaryImpl.hpp"
20 #include <NdbOperation.hpp>
21 #include <NdbTransaction.hpp>
22 #include <NdbBlob.hpp>
23 #include "NdbEventOperationImpl.hpp"
25 static void
26 update(const NdbError & _err){
27 NdbError & error = (NdbError &) _err;
28 ndberror_struct ndberror = (ndberror_struct)error;
29 ndberror_update(&ndberror);
30 error = NdbError(ndberror);
33 const
34 NdbError &
35 Ndb::getNdbError(int code){
36 theError.code = code;
37 update(theError);
38 return theError;
41 const
42 NdbError &
43 Ndb::getNdbError() const {
44 update(theError);
45 return theError;
48 const
49 NdbError &
50 NdbDictionaryImpl::getNdbError() const {
51 update(m_error);
52 return m_error;
55 const
56 NdbError &
57 NdbTransaction::getNdbError() const {
58 update(theError);
59 return theError;
62 const
63 NdbError &
64 NdbOperation::getNdbError() const {
65 update(theError);
66 return theError;
69 const
70 NdbError &
71 NdbBlob::getNdbError() const {
72 update(theError);
73 return theError;
76 const
77 NdbError &
78 NdbEventOperationImpl::getNdbError() const {
79 update(m_error);
80 return m_error;
83 const
84 NdbError &
85 NdbDictInterface::getNdbError() const {
86 update(m_error);
87 return m_error;