https://github.com/yukihane/mybatis-longvarchar
https://github.com/yukihane/mybatis-longvarchar
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/yukihane/mybatis-longvarchar
- Owner: yukihane
- Created: 2019-02-21T03:27:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-22T18:07:09.000Z (about 4 years ago)
- Last Synced: 2025-04-12T21:14:59.868Z (3 months ago)
- Language: Java
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What's this
Testcase of bellow issue:
- https://github.com/mybatis/mybatis-3/issues/1484 LONGVARCHAR is mapped to ClobTypeHandler
# How to setup environment(RDBMS, JDBC driver maven module)
See:
- https://github.com/yukihane/prefs/tree/master/vagrantfiles/sybase
- https://github.com/yukihane/prefs/tree/master/vagrantfiles/sybase/jdbc-driver-installation# How to execute
Create a table in `mydb` database:
use mydb
go
create table longvarchar_table (
longvarchar_column char(1024)
)
goExecute:
mvn test