├── .github └── workflows │ ├── develop.yml │ └── test.yml ├── .gitignore ├── .golangci.yaml ├── .travis.yml ├── README.md ├── appveyor.yml ├── cmd └── gobatis │ ├── generator │ ├── generator.go │ ├── preprocessing.go │ ├── preprocessing_test.go │ ├── stringutils.go │ └── types.go │ ├── goparser2 │ ├── astutil │ │ ├── context.go │ │ ├── load.go │ │ ├── load_test.go │ │ ├── parse.go │ │ └── parse_test.go │ ├── comment.go │ ├── comment_test.go │ ├── interface.go │ ├── method.go │ ├── params.go │ ├── parse.go │ ├── parse_test.go │ ├── results.go │ ├── statement.go │ ├── statement_test.go │ └── type.go │ └── main.go ├── convert ├── convert_std.go ├── convert_test.go └── doc.go ├── core ├── array_test.go ├── connection.go ├── connection_test.go ├── context.go ├── convert.go ├── convert_test.go ├── dialect.go ├── doc.go ├── errors.go ├── expr.go ├── expr_cel.go ├── expr_govaluate.go ├── expr_gval.go ├── expr_test.go ├── generate_test.go ├── main_test.go ├── mapper.go ├── mapper_test.go ├── multiple.go ├── multiple_test.go ├── parameters.go ├── parameters_test.go ├── reflect.go ├── reflect_test.go ├── result.go ├── result_test.go ├── session.go ├── session_test.go ├── split.go ├── split_test.go ├── statement.go ├── stringutils.go ├── tablename.go ├── tag.go ├── tag_test.go ├── template_test.go ├── templates.go ├── type_handler.go ├── xml.go ├── xml_expression.go ├── xml_expression_test.go └── xml_test.go ├── dialects ├── clob.go ├── dialect.go ├── dm │ └── string.go ├── error.go ├── gaussdb │ └── main.go ├── kingbase │ └── main.go ├── mssql │ └── main.go ├── mysql │ └── main.go ├── opengauss │ └── main.go ├── oracle │ └── main.go ├── pgx │ └── main.go ├── placeholder.go ├── placeholder_test.go ├── pq │ └── main.go ├── printer.go └── timezone.go ├── docs ├── .nojekyll ├── README.md ├── _coverpage.md ├── _navbar.md ├── _sidebar.md ├── delete.md ├── enhance.md ├── getting-started.md ├── guide.md ├── index.html ├── insert.md ├── interfaces.md ├── method_reference.md ├── query.md ├── sql_config.md ├── sql_genrate.md ├── tx.md ├── update.md ├── upsert_gen.md └── xml.md ├── example ├── connection.go ├── connection_test.go ├── example_test.go ├── profiles_test.go ├── role.go ├── transaction_test.go ├── user.go ├── users_test.go └── users_with_autogensql.go ├── example_xml ├── example_test.go ├── users.go └── xmlfiles │ ├── dm │ └── test.xml │ ├── mssql │ └── test.xml │ ├── mysql │ └── test.xml │ └── postgres │ └── test.xml ├── gentest ├── common │ └── common.go ├── embedded.go ├── embedded.gobatis.txt ├── external.go ├── external.gobatis.txt ├── fail │ ├── interface.go │ └── interface.gobatis.txt ├── interface.go ├── interface.gobatis.txt ├── role.go ├── role.gobatis.txt ├── upsert.go ├── upsert.gobatis.txt ├── user.go ├── user.gobatis.txt ├── users.go └── users.gobatis.txt ├── go.mod ├── go.sum ├── gobatis.go ├── reflectx ├── readme.md ├── reflect.go └── reflect_test.go ├── test.bat └── tests ├── computer.go ├── db2.go ├── dm └── test.xml ├── mssql └── test.xml ├── mysql └── test.xml ├── oracle └── test.xml ├── postgres └── test.xml ├── session.go ├── session_windows.go ├── struct.go └── user.go /.github/workflows/develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/.github/workflows/develop.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmd/gobatis/generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/generator/generator.go -------------------------------------------------------------------------------- /cmd/gobatis/generator/preprocessing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/generator/preprocessing.go -------------------------------------------------------------------------------- /cmd/gobatis/generator/preprocessing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/generator/preprocessing_test.go -------------------------------------------------------------------------------- /cmd/gobatis/generator/stringutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/generator/stringutils.go -------------------------------------------------------------------------------- /cmd/gobatis/generator/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/generator/types.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/astutil/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/astutil/context.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/astutil/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/astutil/load.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/astutil/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/astutil/load_test.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/astutil/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/astutil/parse.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/astutil/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/astutil/parse_test.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/comment.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/comment_test.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/interface.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/method.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/params.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/parse.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/parse_test.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/results.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/statement.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/statement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/statement_test.go -------------------------------------------------------------------------------- /cmd/gobatis/goparser2/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/goparser2/type.go -------------------------------------------------------------------------------- /cmd/gobatis/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/cmd/gobatis/main.go -------------------------------------------------------------------------------- /convert/convert_std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/convert/convert_std.go -------------------------------------------------------------------------------- /convert/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/convert/convert_test.go -------------------------------------------------------------------------------- /convert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/convert/doc.go -------------------------------------------------------------------------------- /core/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/array_test.go -------------------------------------------------------------------------------- /core/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/connection.go -------------------------------------------------------------------------------- /core/connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/connection_test.go -------------------------------------------------------------------------------- /core/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/context.go -------------------------------------------------------------------------------- /core/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/convert.go -------------------------------------------------------------------------------- /core/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/convert_test.go -------------------------------------------------------------------------------- /core/dialect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/dialect.go -------------------------------------------------------------------------------- /core/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/doc.go -------------------------------------------------------------------------------- /core/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/errors.go -------------------------------------------------------------------------------- /core/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/expr.go -------------------------------------------------------------------------------- /core/expr_cel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/expr_cel.go -------------------------------------------------------------------------------- /core/expr_govaluate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/expr_govaluate.go -------------------------------------------------------------------------------- /core/expr_gval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/expr_gval.go -------------------------------------------------------------------------------- /core/expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/expr_test.go -------------------------------------------------------------------------------- /core/generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/generate_test.go -------------------------------------------------------------------------------- /core/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/main_test.go -------------------------------------------------------------------------------- /core/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/mapper.go -------------------------------------------------------------------------------- /core/mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/mapper_test.go -------------------------------------------------------------------------------- /core/multiple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/multiple.go -------------------------------------------------------------------------------- /core/multiple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/multiple_test.go -------------------------------------------------------------------------------- /core/parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/parameters.go -------------------------------------------------------------------------------- /core/parameters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/parameters_test.go -------------------------------------------------------------------------------- /core/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/reflect.go -------------------------------------------------------------------------------- /core/reflect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/reflect_test.go -------------------------------------------------------------------------------- /core/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/result.go -------------------------------------------------------------------------------- /core/result_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/result_test.go -------------------------------------------------------------------------------- /core/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/session.go -------------------------------------------------------------------------------- /core/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/session_test.go -------------------------------------------------------------------------------- /core/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/split.go -------------------------------------------------------------------------------- /core/split_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/split_test.go -------------------------------------------------------------------------------- /core/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/statement.go -------------------------------------------------------------------------------- /core/stringutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/stringutils.go -------------------------------------------------------------------------------- /core/tablename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/tablename.go -------------------------------------------------------------------------------- /core/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/tag.go -------------------------------------------------------------------------------- /core/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/tag_test.go -------------------------------------------------------------------------------- /core/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/template_test.go -------------------------------------------------------------------------------- /core/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/templates.go -------------------------------------------------------------------------------- /core/type_handler.go: -------------------------------------------------------------------------------- 1 | package core 2 | 3 | type TypeHandler interface { 4 | Convert() 5 | } 6 | -------------------------------------------------------------------------------- /core/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/xml.go -------------------------------------------------------------------------------- /core/xml_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/xml_expression.go -------------------------------------------------------------------------------- /core/xml_expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/xml_expression_test.go -------------------------------------------------------------------------------- /core/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/core/xml_test.go -------------------------------------------------------------------------------- /dialects/clob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/clob.go -------------------------------------------------------------------------------- /dialects/dialect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/dialect.go -------------------------------------------------------------------------------- /dialects/dm/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/dm/string.go -------------------------------------------------------------------------------- /dialects/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/error.go -------------------------------------------------------------------------------- /dialects/gaussdb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/gaussdb/main.go -------------------------------------------------------------------------------- /dialects/kingbase/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/kingbase/main.go -------------------------------------------------------------------------------- /dialects/mssql/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/mssql/main.go -------------------------------------------------------------------------------- /dialects/mysql/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/mysql/main.go -------------------------------------------------------------------------------- /dialects/opengauss/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/opengauss/main.go -------------------------------------------------------------------------------- /dialects/oracle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/oracle/main.go -------------------------------------------------------------------------------- /dialects/pgx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/pgx/main.go -------------------------------------------------------------------------------- /dialects/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/placeholder.go -------------------------------------------------------------------------------- /dialects/placeholder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/placeholder_test.go -------------------------------------------------------------------------------- /dialects/pq/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/pq/main.go -------------------------------------------------------------------------------- /dialects/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/printer.go -------------------------------------------------------------------------------- /dialects/timezone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/dialects/timezone.go -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- 1 | ![logo](icon.png) 2 | 3 | # GoBatis 4 | 5 | 6 | [开始](README.md) -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/delete.md -------------------------------------------------------------------------------- /docs/enhance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/enhance.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/guide.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/insert.md -------------------------------------------------------------------------------- /docs/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/interfaces.md -------------------------------------------------------------------------------- /docs/method_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/method_reference.md -------------------------------------------------------------------------------- /docs/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/query.md -------------------------------------------------------------------------------- /docs/sql_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/sql_config.md -------------------------------------------------------------------------------- /docs/sql_genrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/sql_genrate.md -------------------------------------------------------------------------------- /docs/tx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/tx.md -------------------------------------------------------------------------------- /docs/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/update.md -------------------------------------------------------------------------------- /docs/upsert_gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/upsert_gen.md -------------------------------------------------------------------------------- /docs/xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/docs/xml.md -------------------------------------------------------------------------------- /example/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/connection.go -------------------------------------------------------------------------------- /example/connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/connection_test.go -------------------------------------------------------------------------------- /example/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/example_test.go -------------------------------------------------------------------------------- /example/profiles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/profiles_test.go -------------------------------------------------------------------------------- /example/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/role.go -------------------------------------------------------------------------------- /example/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/transaction_test.go -------------------------------------------------------------------------------- /example/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/user.go -------------------------------------------------------------------------------- /example/users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/users_test.go -------------------------------------------------------------------------------- /example/users_with_autogensql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example/users_with_autogensql.go -------------------------------------------------------------------------------- /example_xml/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example_xml/example_test.go -------------------------------------------------------------------------------- /example_xml/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example_xml/users.go -------------------------------------------------------------------------------- /example_xml/xmlfiles/dm/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example_xml/xmlfiles/dm/test.xml -------------------------------------------------------------------------------- /example_xml/xmlfiles/mssql/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example_xml/xmlfiles/mssql/test.xml -------------------------------------------------------------------------------- /example_xml/xmlfiles/mysql/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example_xml/xmlfiles/mysql/test.xml -------------------------------------------------------------------------------- /example_xml/xmlfiles/postgres/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/example_xml/xmlfiles/postgres/test.xml -------------------------------------------------------------------------------- /gentest/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/common/common.go -------------------------------------------------------------------------------- /gentest/embedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/embedded.go -------------------------------------------------------------------------------- /gentest/embedded.gobatis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/embedded.gobatis.txt -------------------------------------------------------------------------------- /gentest/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/external.go -------------------------------------------------------------------------------- /gentest/external.gobatis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/external.gobatis.txt -------------------------------------------------------------------------------- /gentest/fail/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/fail/interface.go -------------------------------------------------------------------------------- /gentest/fail/interface.gobatis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/fail/interface.gobatis.txt -------------------------------------------------------------------------------- /gentest/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/interface.go -------------------------------------------------------------------------------- /gentest/interface.gobatis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/interface.gobatis.txt -------------------------------------------------------------------------------- /gentest/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/role.go -------------------------------------------------------------------------------- /gentest/role.gobatis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/role.gobatis.txt -------------------------------------------------------------------------------- /gentest/upsert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/upsert.go -------------------------------------------------------------------------------- /gentest/upsert.gobatis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/upsert.gobatis.txt -------------------------------------------------------------------------------- /gentest/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/user.go -------------------------------------------------------------------------------- /gentest/user.gobatis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/user.gobatis.txt -------------------------------------------------------------------------------- /gentest/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/users.go -------------------------------------------------------------------------------- /gentest/users.gobatis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gentest/users.gobatis.txt -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/go.sum -------------------------------------------------------------------------------- /gobatis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/gobatis.go -------------------------------------------------------------------------------- /reflectx/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/reflectx/readme.md -------------------------------------------------------------------------------- /reflectx/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/reflectx/reflect.go -------------------------------------------------------------------------------- /reflectx/reflect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/reflectx/reflect_test.go -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/test.bat -------------------------------------------------------------------------------- /tests/computer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/computer.go -------------------------------------------------------------------------------- /tests/db2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/db2.go -------------------------------------------------------------------------------- /tests/dm/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/dm/test.xml -------------------------------------------------------------------------------- /tests/mssql/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/mssql/test.xml -------------------------------------------------------------------------------- /tests/mysql/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/mysql/test.xml -------------------------------------------------------------------------------- /tests/oracle/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/oracle/test.xml -------------------------------------------------------------------------------- /tests/postgres/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/postgres/test.xml -------------------------------------------------------------------------------- /tests/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/session.go -------------------------------------------------------------------------------- /tests/session_windows.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | import ( 4 | _ "github.com/alexbrainman/odbc" 5 | ) 6 | -------------------------------------------------------------------------------- /tests/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/struct.go -------------------------------------------------------------------------------- /tests/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mei-rune/GoBatis/HEAD/tests/user.go --------------------------------------------------------------------------------