本文介绍了记录未插入数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好,
我使用SQL Server数据库在C#中创建了WinForms应用程序.
当我执行插入查询时,不会返回任何错误,但也不会插入任何数据.
因此,请帮助我.
Hello,
I created a WinForms application in C# with an SQL Server database.
When I execute an insert query no errors are returned, but no data is inserted either.
So please help me.
推荐答案
SqlConnection conexao = ConnectionFactory.NovaConexao();
SqlCommand comando = new SqlCommand("Insert into MyTable values(''"+ txtValue1.Text +"'', ''"+ txtValue2.Text +"''", conexao);
comando.ExecuteNonQuery();
希望有帮助.
Hope this help.
这篇关于记录未插入数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!