当前位置:网站首页>Postgres establish connection and delete records
Postgres establish connection and delete records
2022-07-05 21:07:00 【cuisidong1997】
establish Cursor object
cur = conn.cursor()
perform sql command : Create a new table test
cur.execute(“CREATE TABLE test (id serial PRIMARY KEY, num integer, data varchar);”)
Pass data to formal parameters in the statement , Give Way Psycopg Deal with the correct conversion ( You can avoid sql Inject )
cur.execute(“INSERT INTO test (num, data) VALUES (%s, %s)”,
… (100, “abc’def”))
Interpolated data , And get the results
cur.execute(“SELECT * FROM test;”)
cur.fetchone()
(1, 100, “abc’def”)
Submit data changes
conn.commit()
close Cursor Object and connection object
cur.close()
conn.close()
边栏推荐
- Deep merge object deep copy of vant source code parsing
- 2022-07-03-CKA-粉丝反馈最新情况
- POJ 3414 pots (bfs+ clues)
- When a user logs in, there is often a real-time drop-down box. For example, entering an email will @qq com,@163. com,@sohu. com
- Golang(1)|从环境准备到快速上手
- ClickHouse 复制粘贴多行sql语句报错
- 【案例】定位的运用-淘宝轮播图
- Which securities company is better and which platform is safer for stock account opening
- int GetMonth( ) const throw( );后面的throw( )什么意思?
- Research and development efficiency improvement practice of large insurance groups with 10000 + code base and 3000 + R & D personnel
猜你喜欢
五层网络协议
EasyExcel的读写操作
显示屏DIN 4102-1 Class B1防火测试要求
10000+ 代码库、3000+ 研发人员大型保险集团的研发效能提升实践
Wood board ISO 5660-1 heat release rate mapping test
Mathematical analysis_ Notes_ Chapter 9: curve integral and surface integral
How to send samples when applying for BS 476-7 display? Is it the same as the display??
研学旅游实践教育的开展助力文旅产业发展
Phpstudy Xiaopi's MySQL Click to start and quickly flash back. It has been solved
PHP deserialization +md5 collision
随机推荐
POJ 3414 pots (bfs+ clues)
Traps in the explode function in PHP
浅聊我和一些编程语言的缘分
基于 Ingress Controller 在集群外访问 Zadig 自测环境(最佳实践)
Introduction of ArcGIS grid resampling method
100 cases of shell programming
概率论机器学习的先验知识(上)
Modifiers of attributes of TS public, private, protect
Clion configures Visual Studio (MSVC) and JOM multi-core compilation
wpf 获取datagrid 中指定行列的DataGridTemplateColumn中的控件
当用户登录,经常会有实时的下拉框,例如,输入邮箱,将会@qq.com,@163.com,@sohu.com
示波器探头对测量带宽的影响
Why can't Chinese software companies produce products? Abandon the Internet after 00; Open source high-performance API gateway component of station B | weekly email exclusive to VIP members of Menon w
10000+ 代码库、3000+ 研发人员大型保险集团的研发效能提升实践
vant 源码解析 之深层 合并对象 深拷贝
驱动壳美国测试UL 2043 符合要求有哪些?
Dictionary tree simple introductory question (actually blue question?)
大二下个人发展小结
EN 438-7建筑覆盖物装饰用层压板材产品—CE认证
Longest swing sequence [greedy practice]