c#怎样textbox中的内容写入到数据库中
我的数据库名为hostel,表名为Manage,字段名为hostelID.窗体为FromManage,我想要点击BUTTON把我输入textbox中的内容写入到数据库中....
我的数据库名为hostel,表名为Manage,字段名为hostelID.窗体为FromManage,我想要点击BUTTON把我输入textbox中的内容写入到数据库中.
展开
7个回答
展开全部
1、先把textbox.text.Tostring()写到你定义的变量。
string txtStr = textbox.text;
2、建立连接
sqlConnection con = new sqlConnection("server=.;database=hostel;uid=你数据库管理员名;pwd=密码";
3、打开数据库
con.open()
4、对数据库进行操作(这几步基本上的书都应该有吧)
sqlCommand cmd = new sqlCommand(insert into Manage values(txtStr),con);
cmd.ExcuteNonQuery();
cmd.CommandType = CommandType.Text;
con.close();
够清楚了吧 手写的可能会有些毛病 但大概意思就是这样
希望对你有帮助
string txtStr = textbox.text;
2、建立连接
sqlConnection con = new sqlConnection("server=.;database=hostel;uid=你数据库管理员名;pwd=密码";
3、打开数据库
con.open()
4、对数据库进行操作(这几步基本上的书都应该有吧)
sqlCommand cmd = new sqlCommand(insert into Manage values(txtStr),con);
cmd.ExcuteNonQuery();
cmd.CommandType = CommandType.Text;
con.close();
够清楚了吧 手写的可能会有些毛病 但大概意思就是这样
希望对你有帮助
展开全部
连接数据库 具体什么样的数据库具体连接
插入字段 insert into Manege (hostelID)values( 'textbox的内容' )
插入字段 insert into Manege (hostelID)values( 'textbox的内容' )
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
那就写一个sql语句 连接数据库 然后执行sql语句 insert into Manage values('你的文本框内容')
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1、先把textbox.text.Tostring()写到你定义的变量。
2、打开数据库
3、建立连接
4、对数据库进行操作(这几步基本上的书都应该有吧)
5、把这个变量写进去
OK
2、打开数据库
3、建立连接
4、对数据库进行操作(这几步基本上的书都应该有吧)
5、把这个变量写进去
OK
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
sqlConnection con=new sqlConnection("server=.;database=hostel;trusted_connection=true");
con.Open();
sqlCommand cmd = new sqlCommand(insert into Manage values(@hostelID),con);
cmd.Paramer.addWithValue("@hostelID",textbox1.text);
cmd.ExcuteNonQuery();
con.Close();
里面大小写有错误!!
con.Open();
sqlCommand cmd = new sqlCommand(insert into Manage values(@hostelID),con);
cmd.Paramer.addWithValue("@hostelID",textbox1.text);
cmd.ExcuteNonQuery();
con.Close();
里面大小写有错误!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询