- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试查询一个表,如果条件为真,则执行另一个查询。
我收到以下异常:
System.Data.SqlClient.SqlException: Must declare the scalar variable "@"
这是我的代码:
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["MyServer"].ConnectionString);
SqlConnection con1 = new SqlConnection(ConfigurationManager.ConnectionStrings["MyServer"].ConnectionString);
int amounts = Convert.ToInt32(InstallmentPaidBox.Text) + Convert.ToInt32(InterestPaid.Text) + Convert.ToInt32(PenaltyPaid.Text);
int loans = Convert.ToInt32(PrincipalPaid.Text) + Convert.ToInt32(InterestPaid.Text);
con.Open();
DateTime date = Convert.ToDateTime(DateOfProcessing.Text);
int month1 = Convert.ToInt32(date.Month);
int year1 = Convert.ToInt32(date.Year);
SqlCommand a = new SqlCommand("Select Date,max(Amount)as Amount from Minimum_Amount group by Date",con);
SqlDataReader sq = a.ExecuteReader();
while (sq.Read()) {
DateTime date2 = Convert.ToDateTime(sq["Date"]);
int month2 = Convert.ToInt32(date2.Month);
int year2 = Convert.ToInt32(date2.Year);
if (month1 == month2 && year1 == year2)
{
int amount = Convert.ToInt32(sq["Amount"]);
string scrip = "<script>alert('Data Successfully Added')</script>";
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Added", scrip);
int areas = amount - Convert.ToInt32(InstallmentPaidBox.Text);
int forwarded = Convert.ToInt32(BalanceBroughtTextBox.Text) + Convert.ToInt32(InstallmentPaidBox.Text);
if (firsttime.Checked)
{
int balance = areas + Convert.ToInt32(PenaltyDue.Text) + Convert.ToInt32(InterestDue.Text);
SqlCommand cmd = new SqlCommand("insert into Cash_Position(Member_No,Welfare_Amount, BFWD,Amount,Installment_Paid,Loan_Repayment,Principal_Payment,Interest_Paid,Interest_Due,Loan_Balance,Penalty_Paid,Penalty_Due,Installment_Arrears,CFWD,Balance_Due,Date_Prepared,Prepared_By) values(@a,@b,@c,@d,@e,@)f,@g,@h,@i,@j,@k,@l,@m,@n,@o,@p,@q", con);
cmd.Parameters.Add("@a", SqlDbType.Int).Value = MemberNumberTextBox.Text;
cmd.Parameters.Add("@b", SqlDbType.Int).Value = WelfareAmount.Text;
cmd.Parameters.Add("@c", SqlDbType.Int).Value = BalanceBroughtTextBox.Text;
cmd.Parameters.Add("@d", SqlDbType.Int).Value = amounts;
cmd.Parameters.Add("@e", SqlDbType.Int).Value = InstallmentPaidBox.Text;
cmd.Parameters.Add("@f", SqlDbType.Int).Value = loans;
cmd.Parameters.Add("@g", SqlDbType.Int).Value = PrincipalPaid.Text;
cmd.Parameters.Add("@h", SqlDbType.Int).Value = InterestDue.Text;
cmd.Parameters.Add("@i", SqlDbType.Int).Value = InterestDue.Text;
cmd.Parameters.Add("@j", SqlDbType.Int).Value = 0;
cmd.Parameters.Add("@k", SqlDbType.Int).Value = PenaltyPaid.Text;
cmd.Parameters.Add("@l", SqlDbType.Int).Value = PenaltyDue.Text;
cmd.Parameters.Add("@m", SqlDbType.Int).Value = areas;
cmd.Parameters.Add("@n", SqlDbType.Int).Value = forwarded;
cmd.Parameters.Add("@o", SqlDbType.Int).Value = balance;
cmd.Parameters.Add("@p", SqlDbType.Date).Value = date;
cmd.Parameters.Add("@q", SqlDbType.Text).Value = PreparedBy.Text;
int rows = cmd.ExecuteNonQuery();
con.Close();
最佳答案
一个错误
错误
SqlCommand cmd = new SqlCommand("insert into Cash_Position(Member_No,Welfare_Amount, BFWD,Amount,Installment_Paid,Loan_Repayment,Principal_Payment,Interest_Paid,Interest_Due,Loan_Balance,Penalty_Paid,Penalty_Due,Installment_Arrears,CFWD,Balance_Due,Date_Prepared,Prepared_By) values(@a,@b,@c,@d,@e,@)f,@g,@h,@i,@j,@k,@l,@m,@n,@o,@p,@q", con);
之前是@)f
,更正后-> @f
之前是@q
,更正后-> @q)
正确
SqlCommand cmd = new SqlCommand("insert into Cash_Position(Member_No,Welfare_Amount, BFWD,Amount,Installment_Paid,Loan_Repayment,Principal_Payment,Interest_Paid,Interest_Due,Loan_Balance,Penalty_Paid,Penalty_Due,Installment_Arrears,CFWD,Balance_Due,Date_Prepared,Prepared_By) values(@a,@b,@c,@d,@e,@f,@g,@h,@i,@j,@k,@l,@m,@n,@o,@p,@q)", con);
关于c# - 系统.Data.SqlClient.SqlException : Must declare the scalar variable "@",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12562338/
我不断收到标题中提到的错误,但我似乎无法通过这个错误。 这是我的代码: strSig = sigPlusNET1.GetKeyReceiptAscii() sigPlusNET
在 .Net Core 2.0 中使用 System.Data.SqlClient.dll 时出现版本冲突错误。它看起来像是 Core dll 和 NetStandard dll 之间的冲突。不知道为
在我的代码中使用 Microsoft.Data.SqlClient 程序包(2.0 版)时,通过 VSTest.console.exe 执行单元测试时出现以下错误我们的 CI 供应商(在本地运行时):
错误的屏幕截图我收到指向ItemsService中下面的‘GetAllItems()’方法的SQLException。“无效的列名OrderID1”。我有两个实体,Order和Item,我希望与每个I
错误的屏幕截图我收到指向ItemsService中下面的‘GetAllItems()’方法的SQLException。“无效的列名OrderID1”。我有两个实体,Order和Item,我希望与每个I
Screenshot of errorI am getting an SQLException pointing at the 'GetAllItems()' method below in t
我最近将我的一个 ASP.NET Core 应用程序从 net461 应用程序升级到 ASP.NET Core 2.0 应用程序,因为过去唯一阻碍我的是 System.Transactions(现在受
我对我的 ASP.NET Core 2.0 项目中的所有 .NET Standard 2.0 类库使用 System.Data.SqlClient 版本 4.4.3。为什么我得到 Could not
运行查询时出现以下错误。 * System.Data.SqlClient.SqlException: 超时已过。 在操作完成之前超时期限已过,或者服务器没有响应。在 System.Data.SqlCl
我正在编写一些 python 来与我有权访问的 MSSQL 服务器进行交互。我目前遇到的问题是我的交易语句之一没有超过默认设置的超时期限(30 秒)。 我已尝试将连接字符串中的命令超时更改为值 0,这
在更改服务器并尝试为某些数据库密集型任务增加工作线程数后,我注意到我的应用程序出现性能问题。 经过一些测试,我发现问题出在从 dataReader 读取数据。在 30 个线程上执行简单查询比在单线程上
我有以下代码: open FSharp.Data [] let connectionString = @"Data Source=(local)\SQLExpress;Integrated Secur
我在 ubuntu 中使用单声道,我需要一个 Web 服务来访问 SQL 数据库,但是当我使用 Mono 时: using System.Data.SqlClient; 选项 SqlClient 不存
我已经处理这个问题一段时间了。我有一个简单的 PowerShell 函数,它接受一个到 SQL Server 的开放连接和一个包含 SQL 命令的字符串,并针对服务器运行它。该函数应返回一个整数值,表
假设我有一个将一些数据插入表中的存储过程。如果数据重复,则会导致 sql server 错误(因为我在某些列上有唯一索引)并且此错误会导致 SqlClient 中出现异常。我可以在存储过程中做什么来处
我主要是想找出使用 SqlClient 命名空间在 C#.NET 中执行基本插入操作的最简单方法。 我正在为我的数据库链接使用 SqlConnection,我已经成功执行了一些读取操作,我想知道插
我正在尝试使用 Microsoft.Data.SqlClient,但无法使连接正常工作。但是,当我使用 System.Data.SqlClient 时,一切正常。 try { using (v
我有一个名为 Site.Dal 的项目,它使用 netstandard2.0 进行编译。 csproj 是: netcoreapp2.2;netcoreapp3.1;netstanda
如何在 Azure 上启用和查看 SqlClient 跟踪?我有一个托管在 Azure 上的 Web 应用程序,它使用 SqlClient。我知道我们可以使用 XPerf/PerfView 来收集和查
我们有一个 WCF 服务托管在 IIS 中,在服务器上运行。该服务连接到另一台服务器上运行的 SQL Server 实例。在我们的代码中,我们为每个请求打开和关闭连接。 WCF 服务每分钟向数据库发出
我是一名优秀的程序员,十分优秀!