-6
我已經編寫了使用存儲過程的代碼。但我在這裏得到一個System.FormatException
:格式異常與DataReader中的String.Format和DateTime
while (rdr.Read())
{
PrichinatextBox.Text = (string)rdr["Prichina"];
dateEdit.Text = (string.Format("{yyyy-MM-dd}", rdr["data"])); //error format exception
}
connection.Close();
MessageBox.Show("Ваши данные добавлены");
寫代碼實現它。
謝謝,它的工作 –