...
First, the user needs to install the Altibase ODBC Driver and add the user User DSN in the ODBC Data Source Administrator.
...
In the <dataSource> tag, enter the DSN added by the ODBC data source manager the ODBC Data Source Administrator in connectionString.
Creating Application
...
In order to integrate with DB using iBATIS, the user must first obtain the SqlMapClient object through the SqlMapConfig file. Then, the user can connect to the DB by calling method corresponding to CRUD through the SqlMapClient object.
The following is an application that insertsINSERT, changesUPDATE, deletesDELETE, and queries SELECT data in the person table of the DB.
Ex) SimpleConnection's PersonApp.java
...