• 缓存依赖注意


    1.表名必须要加dbo.,否则会不缓存每次都会读数据库。

    2.如下语句要写在定义Dataset的前面,否则会更新了数据表,缓存还是没失效,显示的旧数据。

    System.Web.Caching.SqlCacheDependency sqlcache = new System.Web.Caching.SqlCacheDependency(commad);

    protected void Page_Load(object sender, EventArgs e)
        {
            StringBuilder strSql = new StringBuilder();
            //strSql.Append("SELECT [id] ,[value] FROM [dbo].[Test]");


            strSql.Append("select ");

            strSql.Append(" Name,LoginID,PassWord,status,MobileNo,ItvNo ");
            strSql.Append(" FROM dbo.Member ");


            this.data.DataSource = GetMember(strSql.ToString());// ExecuteAndCache(strSql.ToString());//
            this.data.DataBind();
        }


        private DataTable GetMember(string strSql)
        {

            //string key = strSql;// "T1";

            if (HttpRuntime.Cache[strSql] == null)
            {
             
                using (SqlConnection sqlconn = new SqlConnection(SqlHelp.conn))
                {

                    using (SqlCommand commad = new SqlCommand())
                    {
                        System.Web.Caching.SqlCacheDependency sqlcache = new System.Web.Caching.SqlCacheDependency(commad);
                        commad.CommandType = CommandType.Text;
                        commad.CommandText = strSql;                   
                        commad.Connection = sqlconn;
                       

                        DataSet ds = new DataSet();                 

                        new SqlDataAdapter(commad).Fill(ds);
                       
                        HttpRuntime.Cache.Insert(strSql, ds, sqlcache);//添加到缓存中
                    }

                }


            }

            DataSet tds = HttpRuntime.Cache[strSql] as DataSet;
            if (tds != null)
                return tds.Tables[0];
            else
                return null;
        }

    alter database [Test] set enable_broker

    select databasepropertyex('[Test]','IsBrokerEnabled')

  • 相关阅读:
    db2死锁解决
    Cannot create JDBC driver of class '' for connect URL 'null'问题解决
    转 maven 教程一 入门 (http://wentao365.iteye.com/blog/903396)
    db2用户密码不合法
    oracle死锁处理方法
    myeclipse修改jsp页面无反应
    oracle函数方法(虚拟表操作)
    jQuery css选择器 截图
    uwsgi和nginx 使用和配置
    nginx+uwsgi+django部署各模块作用
  • 原文地址:https://www.cnblogs.com/antyi/p/2631866.html
Copyright © 2020-2023  润新知