3)编程实现在SOLite中使用MyHelper的帮助类获取数据库表information中的account和password 两个字段的数据。
时间: 2023-12-07 17:40:06 浏览: 164
Solite-POS:我在Dimsum Restaurant上的业务的Android kotlin POS项目
以下是使用MyHelper帮助类获取SOLite数据库表information中account和password字段数据的Python代码示例:
```python
import sqlite3
# 定义MyHelper帮助类
class MyHelper:
def __init__(self, dbname):
self.conn = sqlite3.connect(dbname)
self.cursor = self.conn.cursor()
def __del__(self):
self.cursor.close()
self.conn.close()
def execute(self, sql):
self.cursor.execute(sql)
self.conn.commit()
def fetchall(self, sql):
self.cursor.execute(sql)
return self.cursor.fetchall()
# 创建MyHelper对象
helper = MyHelper('test.db')
# 获取information表中account和password字段数据
result = helper.fetchall('SELECT account, password FROM information')
# 输出结果
for row in result:
print(row[0], row[1])
```
阅读全文