-
vb.net 教程 20-4 库存管理系统3.7 库存查询(FormStorageInfoQuery)
版权声明:本文为博主原创文章,转载请在显著位置标明本文出处以及作者网名,未经作者允许不得用于商业目的。
关于《Visual Basic.Net 循序渐进》请到百度网盘下载,具体下载地址:
链接:https://pan.baidu.com/s/1IfaLvlklx-nT4KK4VKZuIw
提取码:ip5n
库存查询提供了5种方式的组合查询,每种方式查询语句应该符合库存信息(FormStorageInfo)代码中的sql语句。
例如,以下语句是对产品名称的模糊查询,使用like语句:
(货物信息.产品名称 like '%" & txtGoodsName.Text.Trim & "%')
需要注意的是:在Access中执行模糊查询,通配符使用*(星号),而在vb中,应该使用%(百分号)。
使用多个查询条件时,其间使用 And 组合。例如以下语句判断前一查询条件是否为空,如果不为空则使用 and 连接。
SqlWhere = IIf(SqlWhere = "", subSqlWhere, SqlWhere & " And " & subSqlWhere)
另外,为了严格控制用户输入,通常情况下,需要将ComboBox的DropDownStyle属性设置为DropDownList。
全部代码如下:
Imports System.ComponentModel
Imports System.Data.OleDb
Public Class FormStorageInfoQuery
Dim connection As OleDbConnection
Dim arrSupplier As List(Of Integer)
Dim arrGoodsType As List(Of Integer)
Private Sub FormStorageInfoQuery_Load(sender As Object, e As EventArgs) Handles MyBase.Load
arrSupplier = New List(Of Integer)
arrGoodsType = New List(Of Integer)
connection = New OleDbConnection(databaseConnString)
'打开数据连接
connection.Open()
Call fillControls()
cbStockCondition.SelectedIndex = 0
End Sub
'填充数据选项,主要是 cbSupplier 和 cbGoodsType
Private Sub fillControls()
'新建OleDbCommand对象实例
Dim command As New OleDbCommand()
'=========填充供应商选择框==================
'要执行的SQL查询
command.CommandText = "select 供应商ID,公司名称 from 供应商"
'设置OleDbCommand的数据连接为OleDbConnection
command.Connection = connection
'声明OleDbDataReader对象
Dim odReader As OleDbDataReader
'通过OleDbCommand的ExecuteReader方法获得OleDbDataReader对象实例。
odReader = command.ExecuteReader()
'如果OleDbDataReader中包含数据
If odReader.HasRows Then
'循环读取每一行数据,直到Read方法返回False
Do While odReader.Read
arrSupplier.Add(odReader.GetValue(0))
cbSupplier.Items.Add(odReader.GetValue(1))
Loop
End If
odReader.Close()
'==========填充货物类别选择框===================
'要执行的SQL查询
command.CommandText = "select * from 货物类别"
'通过OleDbCommand的ExecuteReader方法获得OleDbDataReader对象实例。
odReader = command.ExecuteReader()
'如果OleDbDataReader中包含数据
If odReader.HasRows Then
'循环读取每一行数据,直到Read方法返回False
Do While odReader.Read
arrGoodsType.Add(odReader.GetValue(0))
cbGoodsType.Items.Add(odReader.GetValue(1))
Loop
End If
'关闭数据读取器
odReader.Close()
cbSupplier.SelectedIndex = 0
cbGoodsType.SelectedIndex = 0
End Sub
Private Sub FormStorageInfoQuery_Closing(sender As Object, e As CancelEventArgs) Handles Me.Closing
connection.Close()
End Sub
Private Sub btnOk_Click(sender As Object, e As EventArgs) Handles btnOk.Click
Dim SqlWhere As String = ""
Dim subSqlWhere As String = ""
'判断是否勾选了查询条件
Dim checkCondition As Boolean = False
'构建查询的where语句
'1、货物名称
If ckGoodsName.Checked = True Then
checkCondition = True
If txtGoodsName.Text.Trim = "" Then
MessageBox.Show("货物名称不能为空值")
Exit Sub
End If
SqlWhere = getGoodsName()
End If
'2、货物编号
If ckGoodsNo.Checked = True Then
checkCondition = True
If txtGoodsNo.Text = "" Then
MessageBox.Show("货物编号不能为空值")
Exit Sub
End If
subSqlWhere = getGoodsNo()
SqlWhere = IIf(SqlWhere = "", subSqlWhere, SqlWhere & " And " & subSqlWhere)
End If
'3、供应商
If ckSupplier.Checked = True Then
checkCondition = True
subSqlWhere = getSupplier()
SqlWhere = IIf(SqlWhere = "", subSqlWhere, SqlWhere & " And " & subSqlWhere)
End If
'4、库存量
If ckStock.Checked = True Then
checkCondition = True
subSqlWhere = getStock()
SqlWhere = IIf(SqlWhere = "", subSqlWhere, SqlWhere & " And " & subSqlWhere)
End If
'5、货物类别
If ckGoodsType.Checked = True Then
checkCondition = True
subSqlWhere = getGoodsType()
SqlWhere = IIf(SqlWhere = "", subSqlWhere, SqlWhere & " And " & subSqlWhere)
End If
If checkCondition = False Then
MessageBox.Show("必须勾选一个查询条件")
Exit Sub
End If
'关闭此窗口
Dim F_StorageInfo As FormStorageInfo
F_StorageInfo = Me.Owner
F_StorageInfo.customWhere = SqlWhere
Me.Close()
End Sub
#Region "设置各个条件下的查询语句"
'注意:查询条件在使用like时
'在Access中,应该使用*
'在vb中,应该使用%
Private Function getGoodsName() As String
Return "(货物信息.产品名称 like '%" & txtGoodsName.Text.Trim & "%')"
End Function
Private Function getGoodsNo() As String
Return "(货物信息.产品编号 like '%" & txtGoodsNo.Text.Trim & "%')"
End Function
Private Function getSupplier() As String
Return "(货物信息.供应商ID=" & arrSupplier(cbSupplier.SelectedIndex) & ")"
End Function
Private Function getStock() As String
Select Case cbStockCondition.Text
Case "大于"
Return "(货物信息.库存量>" & nudStock.Value & ")"
Case "等于"
Return "(货物信息.库存量=" & nudStock.Value & ")"
Case Else
Return "(货物信息.库存量<" & nudStock.Value & ")"
End Select
End Function
Private Function getGoodsType() As String
Return "(货物类别.类别ID=" & arrGoodsType(cbGoodsType.SelectedIndex) & ")"
End Function
#End Region
Private Sub btnCancel_Click(sender As Object, e As EventArgs) Handles btnCancel.Click
Dim F_StorageInfo As FormStorageInfo
F_StorageInfo = Me.Owner
F_StorageInfo.customWhere = ""
Me.Close()
End Sub
End Class
由于.net平台下C#和vb.NET很相似,本文也可以为C#爱好者提供的参考。
————————————————
版权声明:本文为CSDN博主「VB.Net」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/UruseiBest/article/details/114224409
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式