Go xorm은 mysql의 구조 예제 분석을 생성합니다.

WBOY
풀어 주다: 2023-05-30 16:35:15
앞으로
1598명이 탐색했습니다.

인터넷의 많은 리소스에 따르면 xorm reverse mysql "root:123456@tcp(127.0.0.1:3306)/users?charset=utf8" ./

실행 후 오류: 2022/03/16 15:00 :53 [ Error] reverse.go:196 Unknown colType INT UNSIGNED

Go xorm은 mysql의 구조 예제 분석을 생성합니다.

사실 원본 xorm은 더 이상 사용할 수 없으므로 이제 다음과 같이 사용해야 합니다.

go get xorm.io/ reverse

를 입력한 다음 GOPATH를 입력합니다. bin 디렉토리

Go xorm은 mysql의 구조 예제 분석을 생성합니다.

vi custom.yml을 사용하여 데이터베이스에 연결하기 위한 정보를 구성합니다.

kind: reverse
name: users
source:
  database: mysql
  conn_str: 'root:123456@tcp(127.0.0.1:3306)/users?parseTime=true'
targets:
- type: codes
  language: golang
  output_dir: ./testoutput
로그인 후 복사

실행: ./reverse -f custom.yml

다음을 입력합니다. models.go를 생성하기 위한 testoutput/ 디렉토리 파일:

package models

type UserInfo struct {
        Id         uint   `xorm:"not null pk autoincr comment('主键ID') UNSIGNED INT"`
        Name       string `xorm:"not null default '' comment('姓名') VARCHAR(50)"`
        Avatar     string `xorm:"not null default '' comment('头像') VARCHAR(255)"`
        Birthday   string `xorm:"not null default '' comment('出生日期') VARCHAR(50)"`
        Sex        int    `xorm:"not null default 0 comment('性别:0未知,1男,2女') TINYINT(1)"`
        City       string `xorm:"not null default '' comment('所在城市') VARCHAR(50)"`
        Introduce  string `xorm:"comment('自我介绍') TEXT"`
        Status     int    `xorm:"not null default 0 comment('状态:0正常,1禁用') TINYINT(1)"`
        CreateTime uint   `xorm:"not null default 0 comment('创建时间') UNSIGNED INT"`
        UpdateTime uint   `xorm:"not null default 0 comment('最后修改时间') UNSIGNED INT"`
        DeleteTime uint   `xorm:"not null default 0 comment('删除时间') UNSIGNED INT"`
}
로그인 후 복사

Go xorm은 mysql의 구조 예제 분석을 생성합니다.

위 내용은 Go xorm은 mysql의 구조 예제 분석을 생성합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:yisu.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!