syncd
syncd copied to clipboard
add migrate tool
add support for sqlite3 database
私以为syncd如果用了sqlite3,会给安装和使用提供极大的便利性, 大多数情况下,小公司的项目,并不需要mysql来管理。
IMHO, syncd
would benefit from sqlite database. It's small and lightweight, don't need extra setup.
In most cases, small project would not need mysql.
暂时还不能合入,部分页面功能不正常
sqlite3 在没有设置limit,仅设置offset时,会报sql非法。 我想这样改
if query.Limit > 0 {
db = db.Limit(query.Limit)
}
改成
if query.Limit > 0 {
db = db.Limit(query.Limit)
} else {
db = db.Limit(999)
}