I can not figure out the correct syntax for my properties. Any sugestions? This 4 lines are in my config.properties
url=jdbc:sybase:Tds:localhost:2638?servicename=db
driver=com.sybase.jdbc4.jdbc.SybDataSource
username=myUserName
password=myPass
I have tried several ways ... with no luck?
and my mybats-config.xml is as folow.
<environment id="development">
<transactionManager type="JDBC" />
<dataSource type="POOLED">
<property name="driver" value="${driver}" />
<property name="url" value="${url}" />
<property name="username" value="${username}" />
<property name="password" value="${password}" />
</dataSource>
</environment>