该表达式包含无效的字符串常量: '

发布于 2024-10-13 00:57:56 字数 416 浏览 1 评论 0原文

此代码位于文本框更改事件中。

dds.Tables["IncomeGenerator"].DefaultView.RowFilter = "' 收入如 '" + txtSearch.Text + "' 或费用如 '" + txtSearch.Text + "' 或日期 LIKE '" + txtSearch.Text + "' 或余额 LIKE '" + txtSearch.Text + "' 或描述 LIKE '" + txtSearch .文本+“'”;

当我运行它时,它给出一个错误,指出“表达式包含无效的字符串常量:'。”

有人可以帮助我吗?

我的收入、支出和余额的数据类型为浮点型,日期为日期时间。我希望它能有所帮助。有人可以指导我纠正错误并帮助我

this code is in Textbox Change event.

dds.Tables["IncomeGenerator"].DefaultView.RowFilter = "' Income LIKE '" + txtSearch.Text + "' OR Expenses LIKE '" + txtSearch.Text + "' OR Date LIKE '" + txtSearch.Text + "' OR Balance LIKE '" + txtSearch.Text + "' OR Description LIKE '" + txtSearch.Text + "'";

when i run it, it gives a error saying " The expression contains an invalid string constant: '. "

can someone help me.

my Income, Expenses and Balance is Data Type Float and Date is Datetime. i hope it may help. can someone guide me with the mistake and help me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怕倦 2024-10-20 00:57:56

很难确定,但有时当我从网页或文字处理程序复制代码时,我会无意中包含一个“书籍引用”(http://en.wikipedia.org/wiki/Quotation_mark_glyphs),这会把事情搞砸。

看起来您发布的示例中可能有一些。尝试确保所有引用都是直接的上下引用,而不是开头和结尾的“书籍引用”。

It's hard to tell for sure, but sometimes when I copy code from a web page or word processor, I inadvertently include a "book quote" (http://en.wikipedia.org/wiki/Quotation_mark_glyphs) that screws things up.

It looks like there may be some in the sample you posted. Try making sure all the quotes are the straight-up-and-down quotes, and not the begin-end "book quotes".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文