Categorygithub.com/camry/mysql2sqlite
repositorypackage
1.0.1
Repository: https://github.com/camry/mysql2sqlite.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

mysql2sqlite

MySQL convert to SQLite3

使用

mysql2sqlite --server user:password@host:port --db game_base > sqlite_game_base.sql && \
sqlite3 game_base.db < sqlite_game_base.sql
# 忽略表和字段配置
mysql2sqlite --server user:password@host:port --db game_base --config config/ignore.yaml > sqlite_game_base.sql && \
sqlite3 game_base.db < sqlite_game_base.sql