use of com.ibatis.sqlmap.client.SqlMapSession in project druid by alibaba.
the class SqlMapClientImplWrapper method openSession.
public SqlMapSession openSession(Connection conn) {
SqlMapSession session = raw.openSession(conn);
IbatisUtils.setClientImpl(session, this);
return new SqlMapSessionWrapper(raw, session);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project druid by alibaba.
the class SqlMapClientImplWrapper method getSession.
public SqlMapSession getSession() {
SqlMapSession session = raw.getSession();
IbatisUtils.setClientImpl(session, this);
return new SqlMapSessionWrapper(raw, session);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project druid by alibaba.
the class SqlMapClientWrapper method getSession.
public SqlMapSession getSession() {
SqlMapSession session = client.getSession();
IbatisUtils.setClientImpl(session, clientImplWrapper);
return new SqlMapSessionWrapper(client, session);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project druid by alibaba.
the class SqlMapClientWrapper method openSession.
public SqlMapSession openSession() {
SqlMapSession session = client.openSession();
IbatisUtils.setClientImpl(session, clientImplWrapper);
return new SqlMapSessionWrapper(client, session);
}
use of com.ibatis.sqlmap.client.SqlMapSession in project druid by alibaba.
the class SqlMapClientWrapper method openSession.
public SqlMapSession openSession(Connection conn) {
SqlMapSession session = client.openSession(conn);
IbatisUtils.setClientImpl(session, clientImplWrapper);
return new SqlMapSessionWrapper(client, session);
}
Aggregations