SqlConntion sqlconn;
查询:SqlCommand cmd=new Sqlcommand("select 字段 from 表 where 字段=条件",sqlconn);
插入:Sqlcommand cmd1=new SqlCommand("insert 表 字段"values(字段对应的值),sqlconn);
如果数据库是SQL 添加引用:using SystemDataSqlClient;
如果你的数据库是直接建在vs里的话:
string connStr = @"Data Source = \SQLEXPRESS; AttachDBfilename = |DataDirectory|\DBStudentmdf; Integrated Security = True; User Instance = True";
//DBStudentmdf是我的数据库名字,你改成你的数据库就行了:mdf;
using (SqlConnection conn = new SqlConnection(connStr))
{
connOpen();
using (SqlCommand cmd = connCreateCommand())
{
cmdCommandText = ""; //你的 *** 作
cmdExcuteNonQuery();
}
}
如果数据库是建在你电脑上的数据库里:
string connStr = @"Data Source = ; Initial Catalog = DBname(你的数据库名); Integrated Security = True";
其他一样
以上就是关于我在winform里面查询和插入两个 *** 作,查询用oracle,插入用sql,求大神指点,最好能贴下代码全部的内容,包括:我在winform里面查询和插入两个 *** 作,查询用oracle,插入用sql,求大神指点,最好能贴下代码、windows ce 使用C# winform窗体程序系统如何连接数据库 , 最好给个代码,呵呵。、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)