“System.FormatException”类型的未经处理的异常在 mscorlib.dll 中发生
“System.FormatException”类型的未经处理的异常在mscorlib.dll中发生其他信息:该字符串未被识别为有效的DateTime。有一个未知单词(从...
“System.FormatException”类型的未经处理的异常在 mscorlib.dll 中发生
其他信息: 该字符串未被识别为有效的 DateTime。有一个未知单词(从索引 0 处开始)。
附代码:
string strConn = @"Data Source=IDEA-PC;Initial Catalog=CarRentSystem;Integrated Security=True";
SqlConnection conn = new SqlConnection(strConn);
conn.Open(); //数据库连接
String Sql = "select RentalTime from Scustomer where SId in(select SId from Rent where Rent.CcarNum='" + textBox12.Text.Trim()+ "')";
SqlCommand Cmd = new SqlCommand(Sql, conn);
Cmd.ExecuteNonQuery(); //这里怎么用
DateTime rentalTime=Convert.ToDateTime (Sql); // 这句怎么说:该字符串未被识别为有效的 DateTime。有一个未知单词(从索引 0 处开始)。
// 查询租赁单价
string Sql2="select rentPrice from Car where CcarNum='" + textBox12.Text.Trim()+ "'";
SqlCommand Cmd2=new SqlCommand (Sql2,conn);
Cmd.ExecuteNonQuery(); //这句怎么改
int j=Convert.ToInt16 (Sql2);
///计算多少天
DateTime DateTime1 = rentalTime , DateTime2 = DateTime.Now;
DateTime1 = Convert.ToDateTime(DateTime1.Ticks);
String dateDiff = null;
TimeSpan ts1 = new TimeSpan(DateTime1.Ticks);
TimeSpan ts2 = new TimeSpan(DateTime2.Ticks);
TimeSpan ts = ts1.Subtract(ts2).Duration();
dateDiff = ts.Days.ToString() + "天";
///计算金额
int i = int.Parse(dateDiff);
int Hire = i * j; 展开
其他信息: 该字符串未被识别为有效的 DateTime。有一个未知单词(从索引 0 处开始)。
附代码:
string strConn = @"Data Source=IDEA-PC;Initial Catalog=CarRentSystem;Integrated Security=True";
SqlConnection conn = new SqlConnection(strConn);
conn.Open(); //数据库连接
String Sql = "select RentalTime from Scustomer where SId in(select SId from Rent where Rent.CcarNum='" + textBox12.Text.Trim()+ "')";
SqlCommand Cmd = new SqlCommand(Sql, conn);
Cmd.ExecuteNonQuery(); //这里怎么用
DateTime rentalTime=Convert.ToDateTime (Sql); // 这句怎么说:该字符串未被识别为有效的 DateTime。有一个未知单词(从索引 0 处开始)。
// 查询租赁单价
string Sql2="select rentPrice from Car where CcarNum='" + textBox12.Text.Trim()+ "'";
SqlCommand Cmd2=new SqlCommand (Sql2,conn);
Cmd.ExecuteNonQuery(); //这句怎么改
int j=Convert.ToInt16 (Sql2);
///计算多少天
DateTime DateTime1 = rentalTime , DateTime2 = DateTime.Now;
DateTime1 = Convert.ToDateTime(DateTime1.Ticks);
String dateDiff = null;
TimeSpan ts1 = new TimeSpan(DateTime1.Ticks);
TimeSpan ts2 = new TimeSpan(DateTime2.Ticks);
TimeSpan ts = ts1.Subtract(ts2).Duration();
dateDiff = ts.Days.ToString() + "天";
///计算金额
int i = int.Parse(dateDiff);
int Hire = i * j; 展开
展开全部
当然不能正常运行了,你把字符串当作参数怎么转化为日期格式?
把你语句中的cmd.ExecuteNonQuery()改为obj result=cmd.ExecuteScalar();然后再把它转化为日期,如DateTime rentalTime=Convert.ToDateTime(result);下面的照此改
把你语句中的cmd.ExecuteNonQuery()改为obj result=cmd.ExecuteScalar();然后再把它转化为日期,如DateTime rentalTime=Convert.ToDateTime(result);下面的照此改
更多追问追答
追问
改过后object result=cmd.ExecuteScalar();这里出现了这个错误
“System.Data.SqlClient.SqlException”类型的未经处理的异常在 System.Data.dll 中发生
其他信息: “(”附近有语法错误。
“)”附近有语法错误。
追答
那是你的sql语句有错误,你的CcarNum字段类型是整型吗?如果是,请把sql语句改为:
String Sql = "select RentalTime from Scustomer where SId in(select SId from Rent where CcarNum=" + textBox12.Text.Trim()+")";
同理,把string Sql2="select rentPrice from Car where CcarNum='" + textBox12.Text.Trim()+ "'";改为string Sql2="select rentPrice from Car where CcarNum=" + textBox12.Text.Trim();
同时注意括号(为英文输入法下。
展开全部
通过断点查看具体的值。也可以留联系看。
更多追问追答
追问
不会弄 C# 是选修课没学好 让做数据库课程设计用C# Windows form 现学现卖啊
追答
留联系远程看。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
有个不能被转成日期的对象被转成日期了,排查一下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
您可能需要的服务
百度律临官方认证律师咨询
平均3分钟响应
|
问题解决率99%
|
24小时在线
立即免费咨询律师
10168人正在获得一对一解答
济南夏日炎炎4分钟前提交了问题
呼和浩特草原之歌3分钟前提交了问题
沈阳星空之梦5分钟前提交了问题