Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yukihane/mybatis-longvarchar


https://github.com/yukihane/mybatis-longvarchar

Last synced: 19 days ago
JSON representation

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)
)
go

Execute:

mvn test