C#实现数据库多条件查询 20
代码如下:能运行不报错但是点击查询没有任何反应Stringbookname=this.textBox1.Text.Trim();Stringbookid=this.tex...
代码如下:能运行不报错但是点击查询没有任何反应String bookname = this.textBox1.Text.Trim(); String bookid = this.textBox2.Text.Trim(); String author = this.textBox3.Text.Trim(); String press = this.textBox4.Text.Trim(); SqlConnection cnn; cnn = new SqlConnection("server=(local)\\SQLEXPRESS;uid=sa;pwd=111111;database=图书管理系统"); cnn.Open(); String find = "select 书名,图书编号,作者,出版社" + "from 图书" + "where 1=1"; if (bookname.Length != 0) { find += "and 书名=" + bookname; } else if (bookid.Length != 0) { find += "and 图书编号=" + bookid; } else if (author.Length != 0) { find += "and 作者=" + author; } else if (press.Length != 0) { find += "and 出版社=" + press; }
展开
1个回答
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |