GaEpd.DbHelper
5.1.0
Prefix Reserved
dotnet add package GaEpd.DbHelper --version 5.1.0
NuGet\Install-Package GaEpd.DbHelper -Version 5.1.0
<PackageReference Include="GaEpd.DbHelper" Version="5.1.0" />
paket add GaEpd.DbHelper --version 5.1.0
#r "nuget: GaEpd.DbHelper, 5.1.0"
// Install GaEpd.DbHelper as a Cake Addin #addin nuget:?package=GaEpd.DbHelper&version=5.1.0 // Install GaEpd.DbHelper as a Cake Tool #tool nuget:?package=GaEpd.DbHelper&version=5.1.0
DB Helper
The purpose of this library is to simplify interactions with a SQL Server database.
What is this?
There are two classes available:
The
DBHelper
class has many functions available for interacting with a SQL Server database. These functions take care of the tedious parts of querying data or running commands on the database, such as handling connection objects and transactions. There are separate sets of functions depending on whether a SQL query string is used as input or the name of a stored procedure.There is also a
DBUtilities
class with some static functions that simplify working with DBNull values and table-valued SQL parameters.
How do I install it?
To install DB Helper, search for "GaEpd.DbHelper" in the NuGet package manager or run the following command in the Package Manager Console:
PM> Install-Package GaEpd.DbHelper
Using the DBHelper
class
The DBHelper
class must be instantiated with a connection string:
Public DB As New GaEpd.DBHelper(connectionString)
Query string functions
These functions require a SQL query or command plus an optional SQL parameter or array of SQL parameters. When running a non-query command, such as INSERT
or UPDATE
, an optional output parameter will contain the number of rows affected.
Example 1: Simple query
Dim query as String = "select States from StatesTable"
Dim states as DataTable = DB.GetDataTable(query)
Example 2: Query with one SQL parameter
Dim query as String = "select UserName from UserTable where UserId = @id"
Dim parameter As New SqlParameter("@id", MyUserId)
Dim userName as String = DB.GetSingleValue(Of String)(query, parameter)
Example 3: Command with multiple SQL parameters
Dim query as String = "update FacilityTable set Name = @name where FacilityId = @id"
Dim parameterArray As SqlParameter() = {
New SqlParameter("@name", MyNewFacilityName),
New SqlParameter("@id", MyFacilityId)
}
Dim result as Boolean = DB.RunCommand(query, parameterArray)
Example 4: Count rows affected by command
Dim query as String = "update CompanyTable set Status = @status where State = @state"
Dim parameterArray As SqlParameter() = {
New SqlParameter("@status", MyNewStatus),
New SqlParameter("@state", AffectedState)
}
Dim rowsAffected as Integer
Dim result as Boolean = DB.RunCommand(query, parameterArray, rowsAffected)
Console.WriteLine(rowsAffected & " rows affected.")
Stored procedure functions
These functions require the name of a stored procedure instead of a SQL query, but otherwise are very similar to the query functions. These functions all start with "SP" in the name.
An optional output parameter will contain the integer RETURN value of the stored procedure. (Often, a return value of 0 indicates success and a nonzero value indicates failure, but this depends on the particular stored procedure.)
Example 1: Specifying INPUT and OUTPUT SQL parameters
Dim spName as String = "RetrieveFacilitiesByCounty"
Dim returnParam As New SqlParameter("@total", SqlDbType.Int) With {
.Direction = ParameterDirection.Output
}
Dim parameterArray As SqlParameter() = {
New SqlParameter("@county", MyCounty),
returnParam
}
Dim facilities as DataTable = DB.SPGetDataTable(spName, parameterArray)
Dim total As Integer = returnParam.Value
Example 2: Querying for a DataSet and using RETURN value
Dim spName As String = "GetMyData"
Dim returnValue As Integer
Dim dataSet As DataSet = DB.SPGetDataSet(spName, returnValue:=returnValue)
Using the DBUtilities
class
This class does not need to be instantiated and only includes shared functions:
GetNullable(Of T)
converts a database value to a generic, useable .NET value, handling DBNull appropriatelyGetNullableString
converts a database value to a string, handling DBNull appropriatelyGetNullableDateTime
converts a database value to a nullable DateTime, handling DBNull appropriatelyTvpSqlParameter(Of T)
converts an IEnumerable of type T to a structured, table-valued SqlParameter
Changelog
Breaking changes
Version 5.1
The SqlClient package was migrated from System.Data.SqlClient to the new Microsoft.Data.SqlClient. This update introduces some breaking changes.
Please see the Microsoft announcement and the porting cheat sheet for more information and guidance on updating your code.
Version 5
The namespace/prefix was changed from EpdIt
to GaEpd
, which is a reserved prefix on nuget.org. This required publishing as a new package and deprecating the old package.
Version 3
The forceAddNullableParameters
parameter has been removed. DBNull.Value
will be sent for SqlParameter
's that evaluate to null (Nothing
in VB.NET).
The output parameter convenience functions have been removed. If you need an output SQL parameter, just add it as you would normally add any other parameter.
Version 2
The forceAddNullableParameters
parameter now defaults to true
. If this parameter is not set (or is manually set to true
), then DBNull.Value
will be sent for SqlParameter
's that evaluate to Nothing
. To return to the default behavior of dropping such parameters, you must manually set forceAddNullableParameters
to false
.
Developer Notes
To publish a package update to NuGet.org, build a Release version, navigate to the project folder, and run:
nuget push GaEpd.DbHelper.x.x.x.nupkg -Source https://api.nuget.org/v3/index.json
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Data.SqlClient (>= 5.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.