Ejemplo n.º 1
0
        private static void TestTransaction2()
        {
            using (var db = MyDB.GetDBHelper())
            {
                EntityQuery <AuctionOperationLog> query = new EntityQuery <AuctionOperationLog>(db);

                AuctionOperationLog optLog = new AuctionOperationLog();
                optLog.OperaterID = 1000;
                optLog.Module     = "Login";
                optLog.Operation  = "登录成功2";
                optLog.LogSource  = "PC";
                //开启事务
                db.BeginTransaction();
                int count = query.Insert(optLog);

                //模拟数据操作失败,抛出异常
                if (count > 0)
                {
                    //throw new Exception("测试在事务过程中数据操作异常");
                    Console.WriteLine("测试在事务过程中数据操作异常 退出");
                    return;
                }
                //必须设置为全部属性已经修改,否则仅会更新 Operation 字段
                optLog.ResetChanges(true);
                optLog.Operation = "退出登录";
                query.Insert(optLog);

                db.Commit();
            }
        }
Ejemplo n.º 2
0
        private static void TestAutoSave()
        {
            AuctionOperationLog log = new AuctionOperationLog();

            log.OptID     = 1;
            log.Module    = "TestTest";
            log.Operation = "ppppppppp";
            log.LogSource = "test";
            EntityQuery <AuctionOperationLog> .Instance.FillEntity(log);

            EntityQuery eq = new EntityQuery(log);
            //第一次,插入数据
            int ac = eq.Save(log.Module);//仅插入Module 字段,其它字段不插入,要求其它字段可为空。

            Console.WriteLine("测试插入部分字段,成功");

            EntityQuery <AuctionOperationLog> logQuery = new EntityQuery <AuctionOperationLog>(log, true);

            log.OperaterID = 999;
            log.Module     = "Test";
            log.Operation  = "Test Opt";
            log.LogSource  = "Test";

            int affectCount = logQuery.Save();

            Console.WriteLine("自动保存成功(insert),id={0}", log.OptID);


            log.Operation = "Test Opt No.2";
            affectCount   = logQuery.Save();
            Console.WriteLine("自动保存成功(update)");
        }
Ejemplo n.º 3
0
        static void SaveLogingLog(int tvuid)
        {
            AuctionOperationLog optLog = new AuctionOperationLog();

            optLog.OperaterID = tvuid;
            optLog.Module     = "Login";
            optLog.Operation  = "登录成功1";
            optLog.LogSource  = "PC";
            EntityQuery <AuctionOperationLog> .Instance.Insert(optLog);
        }
Ejemplo n.º 4
0
        private static void TestTransaction()
        {
            AdoHelper db = MyDB.GetDBHelper();
            EntityQuery <AuctionOperationLog> query = new EntityQuery <AuctionOperationLog>(db);

            AuctionOperationLog optLog = new AuctionOperationLog();

            optLog.OperaterID = 1000;
            optLog.Module     = "Login";
            optLog.Operation  = "登录成功1";
            optLog.LogSource  = "PC";

            db.BeginTransaction();
            try
            {
                query.Insert(optLog);

                //必须设置为全部属性已经修改,否则仅会更新 Operation 字段
                optLog.ResetChanges(true);
                optLog.Operation = "退出登录";
                query.Insert(optLog);

                //optLog.Module = "Login";
                //OQL q = OQL.From(optLog).Select().Where(optLog.Module).END;
                OQL q = new OQL(optLog);
                //q.Select().Where(q.Condition.AND(optLog.Operation, "like", "%登录%"));

                q.Select().Count(optLog.OperaterID, "");//使用空字符串参数,这样统计的值将放到 OperaterID 属性中
                //必须指定db参数,否则不再一个事务中,无法进行统计查询
                optLog = EntityQuery <AuctionOperationLog> .QueryObject(q, db);

                int allCount = optLog.OperaterID;

                //optLog 已经使用过,在生成OQL的查询前,必须使用新的实体对象,
                //       否则下面的查询仅会使用OperaterID 字段从而导致分页查询出错
                optLog = new AuctionOperationLog();
                q      = new OQL(optLog);

                q.Select().OrderBy(optLog.Module, "asc").OrderBy(optLog.AtDateTime, "desc");
                q.Limit(10, 2);
                q.PageEnable             = true;
                q.PageWithAllRecordCount = allCount;

                //查询列表并更新到数据库
                List <AuctionOperationLog> list = EntityQuery <AuctionOperationLog> .QueryList(q, db);

                foreach (AuctionOperationLog logItem in list)
                {
                    logItem.AtDateTime = DateTime.Now;
                }
                query.Update(list);

                db.Commit();

                Console.WriteLine("事务操作成功。");
            }
            catch (Exception ex)
            {
                Console.WriteLine("Error:" + ex.Message);
                db.Rollback();
            }
        }