我有一个分配控件的表格这是当我单击插入按钮时的代码private void btnInsertRArtist_Click(object sender, EventArgs e){SqlCommand comand = new SqlCommand(InsertRecordingArtists, conect);comand.CommandTy...
我有一个分配控件的表格
这是当我单击插入按钮时的代码
private void btnInsertRArtist_Click(object sender, EventArgs e)
{
SqlCommand comand = new SqlCommand("InsertRecordingArtists", conect);
comand.CommandType = CommandType.StoredProcedure;
try
{
if (txtboxRArtistName.Text == string.Empty || txtboxPlaceOB.Text == "")
{
errorProvider1.SetError(txtboxRArtistName, "Enter the Music category");
}
else
{
conect.Open();
comand.Parameters.AddWithValue("@RecordingArtistName", txtboxRArtistName.Text);
comand.Parameters.AddWithValue("@DateOfBirth", dateTimePicker1);
comand.Parameters.AddWithValue("@BirthPlace", txtboxPlaceOB.Text);
SqlDataAdapter adapt = new SqlDataAdapter(comand);
comand.ExecuteNonQuery();
txtboxRArtistName.Text = "";
}
}
finally
{
conect.Close();
}
}
但是当我插入数据时会出现此异常
我在这里可以做什么…我的存储过程也在这里
ALTER PROCEDURE InsertRecordingArtists
@RecordingArtistName text,
@DateOfBirth datetime,
@BirthPlace text
如
开始
插入[MusicCollection].[dbo].[RecordingArtists]
([RecordingArtistName],[DateOfBirth],[BirthPlace])
价值
(@ RecordingArtistName,@ DateOfBirth,@ BirthPlace)
解决方法:
您不能将DateTimePicker实例用作查询参数.使用DateTimePicker.Value代替:
comand.Parameters.AddWithValue("@DateOfBirth", dateTimePicker1.Value);
沃梦达教程
本文标题为:C#-在Windows窗体中显示插入数据的异常
基础教程推荐
猜你喜欢
- C# 获取系统字体的示例代码 2023-03-04
- c# SqlDataAdapter向数据库插入一个DataTable 2023-11-22
- C# 创建,读取,写入XML文件 2022-11-02
- C#中的WebRequest与WebResponse抽象类、DNS静态类、Ping类介绍 2023-06-08
- 使用C#9中records作为强类型ID的实例教程 2023-03-29
- unity shader实现玻璃折射效果 2023-02-16
- Unity游戏开发实现场景切换示例 2023-06-28
- C#中Dispose和Finalize方法使用介绍 2023-05-26
- C# Request.Form用法案例详解 2023-04-27
- C#枚举类型与位域枚举Enum 2023-06-05