本文整理汇总了Python中simplesqlite.sqlquery.SqlQuery.to_attr_str_list方法的典型用法代码示例。如果您正苦于以下问题:Python SqlQuery.to_attr_str_list方法的具体用法?Python SqlQuery.to_attr_str_list怎么用?Python SqlQuery.to_attr_str_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类simplesqlite.sqlquery.SqlQuery
的用法示例。
在下文中一共展示了SqlQuery.to_attr_str_list方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_normal
# 需要导入模块: from simplesqlite.sqlquery import SqlQuery [as 别名]
# 或者: from simplesqlite.sqlquery.SqlQuery import to_attr_str_list [as 别名]
def test_normal(
self, tmpdir, attr_name_list, data_matrix, index_attr_list,
expected_attr):
p = tmpdir.join("tmp.db")
con = SimpleSQLite(str(p), "w")
table_name = TEST_TABLE_NAME
con.create_table_with_data(
table_name, attr_name_list, data_matrix, index_attr_list)
con.commit()
# check data ---
result = con.select(
select=",".join(SqlQuery.to_attr_str_list(attr_name_list)),
table_name=table_name)
result_matrix = result.fetchall()
assert len(result_matrix) == 3
assert con.get_attr_type(table_name) == expected_attr
示例2: test_exception
# 需要导入模块: from simplesqlite.sqlquery import SqlQuery [as 别名]
# 或者: from simplesqlite.sqlquery.SqlQuery import to_attr_str_list [as 别名]
def test_exception(self, value, expected):
with pytest.raises(expected):
SqlQuery.to_attr_str_list(value)
示例3: test_normal
# 需要导入模块: from simplesqlite.sqlquery import SqlQuery [as 别名]
# 或者: from simplesqlite.sqlquery.SqlQuery import to_attr_str_list [as 别名]
def test_normal(self, value, operation, expected):
assert list(SqlQuery.to_attr_str_list(value, operation)) == expected