* in the sql-map-config.xml configuration file. This provides an easy way to
* achieve some level of programmatic configuration.
* @return An SqlMapClient instance.
*/
public static SqlMapClient buildSqlMapClient(Reader reader, Properties props) {
XmlSqlMapConfigParser configParser = new XmlSqlMapConfigParser(reader, props);
configParser.parse();
return new SqlMapClientImpl((Ibatis2Configuration) configParser.getConfiguration());
}