真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C#連接數(shù)據(jù)庫部分占位符的使用實例

public insert() {
    Console.Write("請輸入姓名:");
    String name = Console.ReadLine();
    Console.Write("請輸入年齡:");
    String age = Console.ReadLine();
    Console.Write("請輸入地址:");
    String add = Console.ReadLine();

    SqlConnection conn = new SqlConnection(@"server=.;database=mydb;uid=sa;pwd=sa");

    //第一種占位符的使用方式
    SqlCommand cmd = conn.CreateCommand();
    cmd.CommandText = "insert into login values(@username,@userage,@useradd)";
    cmd.Parameters.AddWithValue("@username", name);
    cmd.Parameters.AddWithValue("@userage", age);
    cmd.Parameters.AddWithValue("@useradd", add);

    //第二種占位符的使用方式
    String sql = string.Format("insert into login values('{0}',{1},'{2}')", name, age, add);
    SqlCommand cmd = new SqlCommand(sql, conn);

    try {
            conn.Open();
            int i = cmd.ExecuteNonQuery();
            if (i > 0) {
                    Console.WriteLine("插入數(shù)據(jù)成功");
            }
            cmd.Dispose();
            conn.Close();
    } finally {
            conn.Close();
    }
}

標(biāo)題名稱:C#連接數(shù)據(jù)庫部分占位符的使用實例
分享鏈接:http://weahome.cn/article/gchjdd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部