本文整理汇总了Python中com.ziclix.python.sql.zxJDBC.Error方法的典型用法代码示例。如果您正苦于以下问题:Python zxJDBC.Error方法的具体用法?Python zxJDBC.Error怎么用?Python zxJDBC.Error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.ziclix.python.sql.zxJDBC
的用法示例。
在下文中一共展示了zxJDBC.Error方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_result_proxy
# 需要导入模块: from com.ziclix.python.sql import zxJDBC [as 别名]
# 或者: from com.ziclix.python.sql.zxJDBC import Error [as 别名]
def get_result_proxy(self):
if hasattr(self.compiled, 'returning_parameters'):
rrs = None
try:
try:
rrs = self.statement.__statement__.getReturnResultSet()
next(rrs)
except SQLException as sqle:
msg = '%s [SQLCode: %d]' % (sqle.getMessage(), sqle.getErrorCode())
if sqle.getSQLState() is not None:
msg += ' [SQLState: %s]' % sqle.getSQLState()
raise zxJDBC.Error(msg)
else:
row = tuple(self.cursor.datahandler.getPyObject(rrs, index, dbtype)
for index, dbtype in self.compiled.returning_parameters)
return ReturningResultProxy(self, row)
finally:
if rrs is not None:
try:
rrs.close()
except SQLException:
pass
self.statement.close()
return _result.ResultProxy(self)
示例2: get_result_proxy
# 需要导入模块: from com.ziclix.python.sql import zxJDBC [as 别名]
# 或者: from com.ziclix.python.sql.zxJDBC import Error [as 别名]
def get_result_proxy(self):
if hasattr(self.compiled, 'returning_parameters'):
rrs = None
try:
try:
rrs = self.statement.__statement__.getReturnResultSet()
next(rrs)
except SQLException as sqle:
msg = '%s [SQLCode: %d]' % (
sqle.getMessage(), sqle.getErrorCode())
if sqle.getSQLState() is not None:
msg += ' [SQLState: %s]' % sqle.getSQLState()
raise zxJDBC.Error(msg)
else:
row = tuple(
self.cursor.datahandler.getPyObject(
rrs, index, dbtype)
for index, dbtype in
self.compiled.returning_parameters)
return ReturningResultProxy(self, row)
finally:
if rrs is not None:
try:
rrs.close()
except SQLException:
pass
self.statement.close()
return _result.ResultProxy(self)
示例3: testFetchingBeforeExecute
# 需要导入模块: from com.ziclix.python.sql import zxJDBC [as 别名]
# 或者: from com.ziclix.python.sql.zxJDBC import Error [as 别名]
def testFetchingBeforeExecute(self):
"""testing fetch methods before execution"""
c = self.cursor()
try:
try:
c.fetchall()
except zxJDBC.Error, e:
pass
else: