本文整理汇总了Python中sqlite3.SQLITE_DENY属性的典型用法代码示例。如果您正苦于以下问题:Python sqlite3.SQLITE_DENY属性的具体用法?Python sqlite3.SQLITE_DENY怎么用?Python sqlite3.SQLITE_DENY使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类sqlite3
的用法示例。
在下文中一共展示了sqlite3.SQLITE_DENY属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: authorizer_cb
# 需要导入模块: import sqlite3 [as 别名]
# 或者: from sqlite3 import SQLITE_DENY [as 别名]
def authorizer_cb(action, arg1, arg2, dbname, source):
if action != sqlite.SQLITE_SELECT:
return sqlite.SQLITE_DENY
if arg2 == 'c2' or arg1 == 't2':
return sqlite.SQLITE_DENY
return sqlite.SQLITE_OK
示例2: test_authorizer
# 需要导入模块: import sqlite3 [as 别名]
# 或者: from sqlite3 import SQLITE_DENY [as 别名]
def test_authorizer(self):
f = UnhashableFunc(return_value=sqlite.SQLITE_DENY)
with self.assertRaisesRegexp(TypeError, 'unhashable type'):
self.con.set_authorizer(f)
self.con.execute('SELECT 1')
self.assertFalse(f.calls)
示例3: test_authorizer
# 需要导入模块: import sqlite3 [as 别名]
# 或者: from sqlite3 import SQLITE_DENY [as 别名]
def test_authorizer(self):
f = UnhashableFunc(return_value=sqlite.SQLITE_DENY)
with self.assertRaisesRegex(TypeError, 'unhashable type'):
self.con.set_authorizer(f)
self.con.execute('SELECT 1')
self.assertFalse(f.calls)