从 c#asp.net 将数字记录插入 ms 访问
Posted
技术标签:
【中文标题】从 c#asp.net 将数字记录插入 ms 访问【英文标题】:insert numeric records into ms access from c# asp.net 【发布时间】:2012-04-17 05:01:34 【问题描述】:OleDbConnection conn = new OleDbConnection(connectionString);
conn.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = conn;
command.CommandText = "INSERT INTO myTbl ([username],[password],[firstname],[lastname],[mi],[age],[place],[contact])VALUES (?,?,?,?,?,?,?,?)";
command.Parameters.Add("@user", OleDbType.VarChar).Value = txtUsername.Text;
command.Parameters.Add("@psw", OleDbType.VarChar).Value = txtPassword.Text;
command.Parameters.Add("@nm", OleDbType.VarChar).Value = txtName.Text;
command.Parameters.Add("@Lname", OleDbType.VarChar).Value = txtLastName.Text;
command.Parameters.Add("@mIni", OleDbType.VarChar).Value = txtMI.Text;
command.Parameters.Add("@ag", OleDbType.Integer).Value = Convert.ToInt32(txtAge.Text);
command.Parameters.Add("@plc", OleDbType.VarChar).Value = txtPlace.Text;
command.Parameters.Add("@cntct", OleDbType.Integer).Value = Convert.ToInt32(txtContact.Text); ;
command.ExecuteNonQuery();
lblInfo.Visible = true;
lblInfo.Text = "Success";
conn.Close();
这给了我错误Input string was not in a correct format
。请帮帮我。
【问题讨论】:
这段代码给了我错误,输入字符串的格式不正确。所以请帮帮我。提前致谢 通过调试器运行它,哪一行给出了错误? 另外,看看Int32.TryParse
(msdn.microsoft.com/en-us/library/system.int32.tryparse.aspx) 作为Convert.ToInt32
的替代品。
您能否分享您传递给执行任务的那些值,并且您发现“输入字符串格式不正确”的错误
调试并检查你在哪一行得到错误
【参考方案1】:
根据代码和错误,TextBox 控件的文本(txtContact 或 txtAge)很可能不是有效的整数(整数)值。确保您正在验证输入。您应该使用RequiredFieldValidator、RangeValidator 或RegularExpressionValidator 来确保文本框不为空且包含有效文本。
您也可以考虑使用 System.Int32.TryParse() 代替 Convert.ToInt32。
【讨论】:
【参考方案2】:您正在将非整数值转换为整数值,请检查txtAge.Text
和txtContact.Text
及其值,它们应该包含转换为整数值的值。
【讨论】:
以上是关于从 c#asp.net 将数字记录插入 ms 访问的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET - VB.NET - 从 MS-Access 数据库中检索记录
从 MS Access 批量导入并插入 Sql Server [关闭]
记录未使用 javascript 正确插入到 ms 访问数据库中