How to use my own connection when using iBatis Data Mapper?
Posted
by Amitabh
on Stack Overflow
See other posts from Stack Overflow
or by Amitabh
Published on 2010-03-18T13:03:35Z
Indexed on
2010/03/18
13:21 UTC
Read the original article
Hit count: 566
How can I use my own connection Provider when using iBatis Data Mapper? I have to use UserId and Password of the user performing the db operation in the ConnectionString? E.g. The following ConnectionString has to be modified to insert the userid and password for user performing the db operation.
Data Source=TEST;Persist Security Info=True;User ID={userID};Password={password}
How can this be handled in iBatis DataMapper?
© Stack Overflow or respective owner