[安裝 xorm.io/reverse 發生錯誤]
> go get xorm.io/reverse # github.com/mattn/go-sqlite3 cc1.exe: sorry, unimplemented: 64-bit mode not compiled in原因:系統的 gcc 需支援 64 bit,而我早期裝的是 32 bit
> gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=c:/mingw/bin/../libexec/gcc/mingw32/4.7.2/lto-wrapper.exe Target: mingw32 Configured with: ../gcc-4.7.2/configure --enable-languages=c,c++,ada,fortran,objc,obj-c++ --disable-sjlj-exceptions --with-dwarf2 --enable-shared --enable-libgomp --disable-win32-registry --enable-libstdcxx-debug --disable-build-poststage1-with-cxx --enable-version-specific-runtime-libs --build=mingw32 --prefix=/mingw Thread model: win32 gcc version 4.7.2 (GCC)
[解決辦法:安裝 64 位元的 MinGW-w64]
重啟命令視窗,即可讀取到新的設定(若是在 VS code Terminal,須將所有 VS code 關閉重啟)
確定設定生效後,即可正常安裝
安裝後會在 GOPATH 底下的 bin 目錄,產生 reverse.exe 執行檔
[xorm reverse 用法]
1.新增設定文件,例如檔名為 custom.yml,內容為
aa資料庫底下,有兩個資料表a1、b1
產生的 models.go 檔內容如下,轉成 xorm 的Column屬性定義:
下載網址
安裝後,將 MinGW-w64 的 bin 目錄,加入使用者環境變數
C:\Program Files\mingw-w64\x86_64-8.1.0-win32-seh-rt_v6-rev0\mingw64\bin
如果暫時不想刪除舊的 C:\MinGW\bin,須將新的路徑,移到上方
重啟命令視窗,即可讀取到新的設定(若是在 VS code Terminal,須將所有 VS code 關閉重啟)
> gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=C:/Program\ Files/mingw-w64/x86_64-8.1.0-win32-seh-rt_v6-rev0/mingw64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe Target: x86_64-w64-mingw32 Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-win32-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=win32 --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-win32-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-win32-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-win32-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-win32-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-win32-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib ' Thread model: win32 gcc version 8.1.0 (x86_64-win32-seh-rev0, Built by MinGW-W64 project)
確定設定生效後,即可正常安裝
安裝後會在 GOPATH 底下的 bin 目錄,產生 reverse.exe 執行檔
> go get xorm.io/reverse go get: added xorm.io/reverse v0.1.1
[xorm reverse 用法]
1.新增設定文件,例如檔名為 custom.yml,內容為
kind: reverse name: aa #資料庫名稱 source: database: mysql #哪一種資料庫 conn_str: 'root:密碼@tcp(127.0.0.1:3306)/aa' #連接資料庫設定 targets: - type: codes language: golang output_dir: ./test_model #輸出在哪個目錄底下2.執行將資料表轉換成程式碼結構的命令
> reverse -f custom.yml結果會在 output_dir(./test_model)目錄下產生 models.go 檔
aa資料庫底下,有兩個資料表a1、b1
CREATE TABLE `a1` ( `a_id` int(11) NOT NULL, `a_data` varchar(45) DEFAULT NULL, `a_dtime` datetime DEFAULT NULL, `a_cur_time` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='測試1'; CREATE TABLE `b1` ( `b_id` int(11) NOT NULL, `b_num` int(10) UNSIGNED ZEROFILL DEFAULT NULL COMMENT '測試', `b_num2` int(11) NOT NULL, `b_data` decimal(11,2) NOT NULL, `b_add_dtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ALTER TABLE `a1` ADD PRIMARY KEY (`a_id`), ADD UNIQUE KEY `a_data` (`a_data`); ALTER TABLE `b1` ADD PRIMARY KEY (`b_id`); ALTER TABLE `a1` MODIFY `a_id` int(11) NOT NULL AUTO_INCREMENT; ALTER TABLE `b1` MODIFY `b_id` int(11) NOT NULL AUTO_INCREMENT;
產生的 models.go 檔內容如下,轉成 xorm 的Column屬性定義:
package models import ( "time" ) type A1 struct { AId int `xorm:"not null pk autoincr INT(11)"` AData string `xorm:"unique VARCHAR(45)"` ADtime time.Time `xorm:"DATETIME"` ACurTime time.Time `xorm:"TIMESTAMP"` } type B1 struct { BId int `xorm:"not null pk autoincr INT(11)"` BNum int `xorm:"comment('測試') INT(10)"` BNum2 int `xorm:"not null INT(11)"` BData string `xorm:"not null DECIMAL(11,2)"` BAddDtime time.Time `xorm:"not null default CURRENT_TIMESTAMP TIMESTAMP"` }
跟原資料表結構相比,可發現有些細節消失了(資料表COMMENT、欄位UNSIGNED ZEROFILL屬性、...也許還會有其他的)
另外測試將產生的 models.go 內容,用engine.Sync2(new(A1), new(B1)) 自動建立資料表,這些細節也是沒有了。
engine.Sync2()能夠根據程式碼中的資料表結構,部分自動同步建立(修改)資料庫中的資料表,例如:新增欄位可以,但刪除欄位不可以。
參考:
- https://gitea.com/xorm/reverse
xorm/reverse: A flexsible and powerful command line tool to convert database to codes - reverse - Gitea: Git with a cup of tea - https://zhuanlan.zhihu.com/p/206458663
Xorm reverse工具安装与使用 根据数据库自动生成go代码 - 知乎 - https://gobook.io/read/gitea.com/xorm/manual-zh-CN/
XORM操作手册 - https://alexmav04.github.io/computer/windows-with-mingw-w64/
[C++]MinGW-w64安裝與設定
沒有留言:
張貼留言