package
0.0.0-20241113003658-e9f364aafde9
Repository: https://github.com/limerence-code/goproject.git
Documentation: pkg.go.dev
# README
Orm
sqllite安装
https://www.runoob.com/sqlite/sqlite-installation.html
wsl
apt-get install sqlite3
cd /mnt/d/project/go_project/goproject
# 进入gee库
sqlite3 gee.db
CREATE TABLE User(Name text, Age integer);
INSERT INTO User(Name, Age) VALUES ('Tom', 18), ('Jack', 25);
SELECT * FROM User
# 查看所有表
.table
# 查看表结构
.schema User
cygwin
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
* @Author: gaoh
* @Date: 2023-05-15 23:42:28
* @LastEditTime: 2023-05-15 23:48:20
*/.