摘要:
gitcode上传代码之后的一些命令 Git global setup git config --global user.name "小怪兽" git config --global user.email "xxxxx@example.com" Create a new repository git 阅读全文
2023年3月11日 #
摘要:
macOS 终端 (Terminal) 历史命令查询 默认显示部分命令行 history 只显示了部分命令行。 显示全部命令行 history 0 显示特定行开始的命令行 history 660 终端会打印出 660~最近一次输入的命令行。 阅读全文
摘要:
sqlite系统命令 sqlite test.db 创建 test.db 文件并进入 sqlite3 sqlite>.database 查看数据库文件信息命令 (注意命令前带字符'.') sqlite>.schema 查看所有表的创建语句: sqlite>.schema table_name 查看指 阅读全文
摘要:
进入 sqlite3 命令行模式 安装好 sqlite3 之后,在 linux 命令行中输入 sqlite3 , 进入 sqlite3 的命令行模式。 root@172:/# sqlite3 SQLite version 3.23.1 2018-04-10 17:39:29 Enter ".help 阅读全文
摘要:
创建model文件 from sqlalchemy import create_engine,Column,String,Integer from sqlalchemy.ext.declarative import declarative_base engine = create_engine("s 阅读全文