import sqlite3
class Demo01:
def __init__(self):
self.conn=sqlite3.connect("sql_demo_001.db")
self.cursor1=self.conn.cursor()
self.cursor1.execute("select * from table_001 where name= ? and id= ? ",('ssss',31))
print(self.cursor1.fetchall())
self.conn.commit()
self.conn.close()
d=Demo01()
相关文章
- 08-06教你一招:在PowerPoint中自定义可输入文本的占位符
- 08-06slf4j中的Logger 使用占位符{} 来传入参数记录日志信息
- 08-06tensorflow InvalidArgumentError:您必须使用dtype float输入占位符张量的值
- 08-06docker-compose的一些占位符运用
- 08-06[Go]fmt Sprintf的格式占位符%
- 08-06c – 可以使用自动占位符来推断非类型模板参数中的函数结果吗?
- 08-06python基础学习之简化占位符和格式化的概念
- 08-06SpringMVC(七) RequestMapping 路径中带占位符的URL
- 08-06Sql语句占位符?的使用
- 08-06tensorflow_1.x(三):Tensorflow2入门(运行模型、会话、常量、变量,常量的赋值、占位符、feed提交数据)