当前位置: 首页>>代码示例>>C#>>正文


C# IDatabase.CreateCommand方法代码示例

本文整理汇总了C#中IDatabase.CreateCommand方法的典型用法代码示例。如果您正苦于以下问题:C# IDatabase.CreateCommand方法的具体用法?C# IDatabase.CreateCommand怎么用?C# IDatabase.CreateCommand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IDatabase的用法示例。


在下文中一共展示了IDatabase.CreateCommand方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: runDbCommands

 protected void runDbCommands(IDatabase db, IList<string> sqls)
 {
     foreach (string sql in sqls) {
         DbCommand cmd = db.CreateCommand(sql);
         db.ExecuteNonQuery(cmd);
     }
 }
开发者ID:ChristophWurst,项目名称:UFO,代码行数:7,代码来源:IntegrationTest.cs

示例2: AddResults

        private void AddResults(int id, string results, DateTime processed, IDatabase db)
        {
            DbCommand command = db.CreateCommand(sqlADDRESULTS);

            command.Parameters.Add(db.CreateParameter("@results", "varchar", results.Length));
            command.Parameters["@results"].Value = results;

            command.Parameters.Add(db.CreateParameter("@processed", "datetime"));
            command.Parameters["@processed"].Value = processed;

            db.ExecuteNonQuery(command);
        }
开发者ID:thompsonx,项目名称:vis_ordinace,代码行数:12,代码来源:SampleRequestMapper.cs

示例3: Read

        private List<Request> Read(DbDataReader reader, IDatabase db)
        {
            List<Request> requests = new List<Request>();
            MedicineMapper medcat = MedicineMapper.GetInstance();

            while (reader.Read())
            {
                Prescription er = new Prescription();
                er.Id = reader.GetInt32(0);
                er.Created = reader.GetDateTime(1);

                DbCommand command = db.CreateCommand(sqlSELECTMEDICINE);
                command.Parameters.Add(db.CreateParameter("@id", "int"));
                command.Parameters["@id"].Value = er.Id;
                DbDataReader medicines = db.Select(command);
                er.Medicines = this.ReadMedicines(medicines, medcat);

                medicines.Close();

                requests.Add(er);
            }

            return requests;
        }
开发者ID:thompsonx,项目名称:vis_ordinace,代码行数:24,代码来源:PrescriptionMapper.cs

示例4: ReadAllergens

        private List<string> ReadAllergens(Medicine m, IDatabase db)
        {
            DbCommand command = db.CreateCommand(sqlSELECTALLERGENS);
            command.Parameters.Add(db.CreateParameter("@id", "int"));
            command.Parameters["@id"].Value = m.Id;

            DbDataReader areader = db.Select(command);

            List<string> allergens = new List<string>();
            while (areader.Read())
            {
                allergens.Add(areader.GetString(0));
            }

            areader.Close();

            return allergens;
        }
开发者ID:thompsonx,项目名称:vis_ordinace,代码行数:18,代码来源:SqlDbDataSource.cs

示例5: InsertMedicines

        private int InsertMedicines(Prescription p, IDatabase db)
        {
            int added = 0;
            DbCommand command;

            foreach (Medicine m in p.Medicines)
            {
                command = db.CreateCommand(sqlINSERTMEDICINE);
                command.Parameters.Add(db.CreateParameter("@id", "int"));
                command.Parameters["@id"].Value = p.Id;

                command.Parameters.Add(db.CreateParameter("@medicineid", "int"));
                command.Parameters["@medicineid"].Value = m.Id;

                added += db.ExecuteNonQuery(command);
            }

            return added;
        }
开发者ID:thompsonx,项目名称:vis_ordinace,代码行数:19,代码来源:PrescriptionMapper.cs


注:本文中的IDatabase.CreateCommand方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。