Ibatis 测试出SQL

Posted 笨小孩做开发

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ibatis 测试出SQL相关的知识,希望对你有一定的参考价值。

String sql = Brg.Global.Map.BaseBatis.GetRuntimeSql("select_T_JewelleryProductType", _Model);

 

 /// <summary>
        /// 得到运行时ibatis.net动态生成的SQL
        /// </summary>
        /// <param name="sqlMapper"></param>
        /// <param name="statementName"></param>
        /// <param name="paramObject"></param>
        /// <returns></returns>
        public static string GetRuntimeSql(string statementName, object paramObject)
        {
            string result = string.Empty;
            try
            {
                IMappedStatement statement = SqlMap.GetMappedStatement(statementName);
                if (!SqlMap.IsSessionStarted)
                {
                    SqlMap.OpenConnection();
                }
                RequestScope scope = statement.Statement.Sql.GetRequestScope(statement, paramObject, SqlMap.LocalSession);
                result = scope.PreparedStatement.PreparedSql;
            }
            catch (Exception ex)
            {
                result = "获取SQL语句出现异常:" + ex.Message;
            }
            return result;
        }

 

以上是关于Ibatis 测试出SQL的主要内容,如果未能解决你的问题,请参考以下文章

Ibatis2 和测试上下文

spring+ibatis 插入是正确的,但查询不出数据

java ibatis中resultMap 列中列使用select出字符串集合映射到列变量问题,请教大家,例:

mybatis怎么配置log4j打印出sql语句

怎么配置log4j 打印出sql语句

MyBatis异常处理org.apache.ibatis.executor.ExecutorException