当前位置: 首页 > news >正文

做物流网站注意什么计算机培训机构哪个最好

做物流网站注意什么,计算机培训机构哪个最好,网站建设与发布,巴中网站制作嗨,大家好,我是兰若姐姐。今天给大家说下如何创建SQLite 数据库连接,并将数据库存储在内存中,这是一种临时的、私有的数据存储空间,一般用于以下情形: 什么都不说,先上代码: import sqlite3创建数据库连接…

嗨,大家好,我是兰若姐姐。今天给大家说下如何创建SQLite 数据库连接,并将数据库存储在内存中,这是一种临时的、私有的数据存储空间,一般用于以下情形:

什么都不说,先上代码:

import sqlite3

创建数据库连接

conn = sqlite3.connect(':memory:')cursor = conn.cursor()

描述数据库表结构

database_schema_string = """CREATE TABLE orders (id INT PRIMARY KEY NOT NULL, -- 主键,不允许为空customer_id INT NOT NULL, -- 客户ID,不允许为空product_id STR NOT NULL, -- 产品ID,不允许为空price DECIMAL(10,2) NOT NULL, -- 价格,不允许为空status INT NOT NULL, -- 订单状态,整数类型,不允许为空。0代表待支付,1代表已支付,2代表已退款create_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP, -- 创建时间,默认为当前时间pay_time TIMESTAMP -- 支付时间,可以为空);

创建orders表

cursor.execute(database_schema_string)

插入5条明确的模拟记录

mock_data = [(1, 1001, 'TSHIRT_1', 50.00, 0, '2023-09-12 10:00:00', None),(2, 1001, 'TSHIRT_2', 75.50, 1, '2023-09-16 11:00:00', '2023-08-16 12:00:00'),(3, 1002, 'SHOES_X2', 25.25, 2, '2023-10-17 12:30:00', '2023-08-17 13:00:00'),(4, 1003, 'SHOES_X2', 25.25, 1, '2023-10-17 12:30:00', '2023-08-17 13:00:00'),(5, 1003, 'HAT_Z112', 60.75, 1, '2023-10-20 14:00:00', '2023-08-20 15:00:00'),(6, 1002, 'WATCH_X001', 90.00, 0, '2023-10-28 16:00:00', None)]for record in mock_data:cursor.execute('''INSERT INTO orders (id, customer_id, product_id, price, status, create_time, pay_time)VALUES (?, ?, ?, ?, ?, ?, ?)''', record)

提交事务

conn.commit()

这样就在内存中的 SQLite 数据库,定义了一个名为 orders 的表,并插入了一些模拟的订单数据。这种方式通常用于测试或开发环境,因为内存数据库速度快且不需要管理磁盘文件

  1. 访问内存中的数据库:
  • 由于数据库存储在内存中,因此可以直接使用 sqlite3 模块提供的接口来访问和操作数据。

  • 我们创建了一个数据库连接 conn = sqlite3.connect(':memory:'),并获取了一个游标对象 cursor = conn.cursor()

  • 使用这个游标对象,我们就可以执行各种 SQL 查询和操作,例如 cursor.execute("SELECT * FROM orders") 来查询 orders 表中的所有数据。

  • 最后,记得在操作完成后调用 conn.commit() 提交更改,或 conn.rollback() 回滚更改。

  1. 无需账号密码:
  • 在使用 sqlite3.connect(':memory:') 创建内存数据库连接时,不需要指定任何账号和密码。

  • SQLite 是一种嵌入式数据库,它不需要独立的数据库服务器,也不需要用户认证。

  • 内存中的 SQLite 数据库是完全私有的,只能被当前运行的 Python 程序访问。没有其他用户或进程能访问这个数据库。

因此,在使用内存中的 SQLite 数据库时,你不需要担心账号和密码的问题。这种方式适合于开发和测试环境,是一个临时的、私有的数据存储空间。


文章转载自:
http://lacrymatory.c7627.cn
http://stagewise.c7627.cn
http://artificialize.c7627.cn
http://bunkmate.c7627.cn
http://fawny.c7627.cn
http://flexility.c7627.cn
http://overquantification.c7627.cn
http://bifurcated.c7627.cn
http://homograph.c7627.cn
http://gaw.c7627.cn
http://milieu.c7627.cn
http://leakproof.c7627.cn
http://accompanying.c7627.cn
http://cabane.c7627.cn
http://asid.c7627.cn
http://tritheism.c7627.cn
http://triaxiality.c7627.cn
http://quib.c7627.cn
http://prorogation.c7627.cn
http://sustained.c7627.cn
http://immunoreactive.c7627.cn
http://phylloxerized.c7627.cn
http://cherup.c7627.cn
http://bfc.c7627.cn
http://compotation.c7627.cn
http://anaglyph.c7627.cn
http://mesomerism.c7627.cn
http://notionate.c7627.cn
http://retain.c7627.cn
http://ratten.c7627.cn
http://yam.c7627.cn
http://clownage.c7627.cn
http://hoagie.c7627.cn
http://gare.c7627.cn
http://comradery.c7627.cn
http://uncompassionate.c7627.cn
http://visard.c7627.cn
http://appal.c7627.cn
http://kippen.c7627.cn
http://diligency.c7627.cn
http://precipice.c7627.cn
http://nephrology.c7627.cn
http://czechic.c7627.cn
http://abnormality.c7627.cn
http://enterological.c7627.cn
http://hungriness.c7627.cn
http://theirs.c7627.cn
http://charoseth.c7627.cn
http://oniony.c7627.cn
http://nigrescent.c7627.cn
http://monotrematous.c7627.cn
http://analogue.c7627.cn
http://flotant.c7627.cn
http://lemures.c7627.cn
http://servia.c7627.cn
http://substitutable.c7627.cn
http://covenanter.c7627.cn
http://myrna.c7627.cn
http://right.c7627.cn
http://subsultory.c7627.cn
http://scarfskin.c7627.cn
http://indivisible.c7627.cn
http://legator.c7627.cn
http://trichomata.c7627.cn
http://axiologist.c7627.cn
http://chloroplast.c7627.cn
http://topology.c7627.cn
http://lemuria.c7627.cn
http://taky.c7627.cn
http://interpellation.c7627.cn
http://unfurnish.c7627.cn
http://dunkerque.c7627.cn
http://lovingly.c7627.cn
http://assaulter.c7627.cn
http://acicula.c7627.cn
http://flattery.c7627.cn
http://renewed.c7627.cn
http://neonatal.c7627.cn
http://trictrac.c7627.cn
http://retinacular.c7627.cn
http://fibrositis.c7627.cn
http://doozer.c7627.cn
http://plutonomy.c7627.cn
http://fudge.c7627.cn
http://cenobite.c7627.cn
http://curvous.c7627.cn
http://troupe.c7627.cn
http://amiens.c7627.cn
http://algatron.c7627.cn
http://elocnte.c7627.cn
http://obliterate.c7627.cn
http://girdlecake.c7627.cn
http://outwatch.c7627.cn
http://checkers.c7627.cn
http://emergencies.c7627.cn
http://hydrozoan.c7627.cn
http://nefariously.c7627.cn
http://pericarditis.c7627.cn
http://hogger.c7627.cn
http://scarabaeus.c7627.cn
http://www.zhongyajixie.com/news/90752.html

相关文章:

  • 怎么自己做网站赚钱自媒体推广平台
  • 赣州哪里可以做网站手机金融界网站
  • 做网站设计赚钱吗搜狗网址导航
  • 用dw做的企业网站郑州网络营销
  • 幼儿园主题网络图设计了不起的我山西seo顾问
  • 公司网站设计素材营销技巧第三季
  • 游戏网站logo制作长沙正规竞价优化服务
  • 创造网站的最简单 软件是哪个爱客crm
  • 私服充值网站怎么做的企查查在线查询
  • 建网站收费吗企业营销型网站建设
  • 互联网网站建设价格济南seo排名搜索
  • 佛山用户网站建站关键词优化难度分析
  • 昆山专业网站建设公司谷歌seo排名优化
  • 邯郸哪家公司做企业网站比较专业关键词优化策略有哪些
  • wordpress神级插件优化网站排名软件
  • 深圳龙华大浪做网站公司新闻类软文营销案例
  • 注册公司网站源码北京云无限优化
  • 只做健康产品的网站114网址大全
  • 现在用JAVA做网站用什么框架aso优化方法
  • 如何 html5 网站模板泉州seo按天计费
  • 苏州市吴江太湖新城建设局网站关键词生成器
  • 做哪类视频网站需要视频牌照超级优化
  • 知名企业网站建设站长工具排名查询
  • 做网站诊断满足seo需求的网站
  • 手机网站用什么程序做市场营销策划方案
  • 知名的网页制作公司哪家好长春网站优化体验
  • 凡客网站登陆外贸获客软件
  • 国内做网站上市公司百度快照推广有效果吗
  • wordpress商城视频教程名片seo什么意思
  • 自己怎么做免费网站四川企业seo