Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yukihane/mybatis-longvarchar
https://github.com/yukihane/mybatis-longvarchar
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yukihane/mybatis-longvarchar
- Owner: yukihane
- Created: 2019-02-21T03:27:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-22T18:07:09.000Z (over 3 years ago)
- Last Synced: 2023-03-12T02:23:29.559Z (almost 2 years 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