01_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 01

01

 2015/4/8 16:10:04  Impetuous_Fire  程序员俱乐部  我要评论(0)
  • 摘要:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Data;usingSystem.Data.SQLite;namespace练习2{classProgram{staticvoidMain(string[]args){stringstr=@"datasource=C
  • 标签:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.SQLite;

namespace 练习2
{
    class Program
    {
        static void Main(string[] args)
        {
            string str = @"data source=C:\Users\Administrator\Desktop\math.db";
            using(SQLiteConnection con=new SQLiteConnection (str))
            {
                con.Open();
                using(SQLiteCommand cmd=new SQLiteCommand ())
                {
                    cmd.CommandText = "insert into Student values('李四','Steve jobs')";
                    cmd.Connection = con;
                    int i = cmd.ExecuteNonQuery();
                    if(i>0)
                    {
                        Console.WriteLine("成功");
                    }
                    else
                    {
                        Console.WriteLine("失败");
                    }
                    Console.ReadKey();
                }
            }



            //删除
            string str2 = @"data source=C:\Users\Administrator\Desktop\math.db";
            using(SQLiteConnection con=new SQLiteConnection (str2))
            {
                con.Open();
                string delStr = "delete from Student where ID='01'";
                using(SQLiteCommand cmd=new SQLiteCommand (delStr,con))
                {
                    int i = cmd.ExecuteNonQuery();
                    if(i>0)
                    {
                        Console.WriteLine("成功");
                        
                    }
                    else
                    {
                        Console.WriteLine("失败");
                    }
                    Console.ReadKey();
                }
            }
        }
    }
}

 

  • 相关文章
发表评论
用户名: 匿名