Skip to content

Commit 1d7a7d8

Browse files
committed
Update 1.1.2
* Added sending in the connection string when instantiating the DB_Interface class. * Corrected an issue with an if statement that caused Async calls to not work in .NET 5.0.
1 parent 7eacae6 commit 1d7a7d8

File tree

3 files changed

+26
-17
lines changed

3 files changed

+26
-17
lines changed

Utility.DatabaseInterface/DB_Interface.cs

+20-15
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System;
88
using System.Data;
99
using System.Collections;
10-
#if NET45_OR_GREATER
10+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
1111
using System.Threading.Tasks;
1212
#endif
1313

@@ -19,6 +19,11 @@ public DB_Interface() : base()
1919
{
2020
ConnectionString = string.Empty;
2121
}
22+
23+
public DB_Interface(string connectionString) : base()
24+
{
25+
ConnectionString = connectionString;
26+
}
2227
#region "Properties"
2328
/// <summary>
2429
/// ''' This should be the connection string from your web.config file for connecting to the Database
@@ -80,7 +85,7 @@ public string RunSQL(string strSQL, Int32 Timeout = 30)
8085

8186
return _returnVal;
8287
}
83-
#if NET45_OR_GREATER
88+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
8489
/// <summary>
8590
/// ''' Runs a SQL statement and returns Nothing upon successful completion
8691
/// ''' </summary>
@@ -178,7 +183,7 @@ public string RunSQL(string strSQL, ArrayList ParameterList = default, Int32 Tim
178183
return _returnVal;
179184
}
180185

181-
#if NET45_OR_GREATER
186+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
182187
/// <summary>
183188
/// ''' Runs a SQL statement and returns Nothing upon successful completion
184189
/// ''' </summary>
@@ -289,7 +294,7 @@ public DataTable GetDataTableFromReader(string StoredProcedureName, ArrayList Pa
289294
return _dt;
290295
}
291296

292-
#if NET45_OR_GREATER
297+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
293298
/// <summary>
294299
/// ''' Executes the provided StoredProcedure and returns a datatable
295300
/// ''' </summary>
@@ -404,7 +409,7 @@ public DataTable GetDataTableFromReaderUsingSQL(string SQL, ArrayList ParameterL
404409
return _dt;
405410
}
406411

407-
#if NET45_OR_GREATER
412+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
408413
/// <summary>
409414
/// ''' Executes the provided SQL and returns a datatable
410415
/// ''' </summary>
@@ -519,7 +524,7 @@ public string RunStoredProcedure(string StoredProcedureName, ArrayList Parameter
519524
return _returnVal;
520525
}
521526

522-
#if NET45_OR_GREATER
527+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
523528
/// <summary>
524529
/// ''' Executes the provided StoredProcedure and returns either Success or Error
525530
/// ''' </summary>
@@ -633,7 +638,7 @@ public DbDataRecord GetRowFromDataReader(string StoredProcedureName, ArrayList P
633638
return dataRecord;
634639
}
635640

636-
#if NET45_OR_GREATER
641+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
637642
/// <summary>
638643
/// ''' Executes the provided StoredProcedure and returns the DbDataRecord
639644
/// ''' </summary>
@@ -747,7 +752,7 @@ public object GetValueFromSP(string StoredProcedureName, ArrayList ParameterList
747752
return Result;
748753
}
749754

750-
#if NET45_OR_GREATER
755+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
751756
/// <summary>
752757
/// ''' Executes the provided StoredProcedure and returns an Object
753758
/// ''' </summary>
@@ -848,7 +853,7 @@ public string GetValueFromSQL(string SQL, ArrayList ParameterList = default, Int
848853
return Result;
849854
}
850855

851-
#if NET45_OR_GREATER
856+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
852857
/// <summary>
853858
/// ''' Executes the provided sql statement and returns the value specified in the sql statement.
854859
/// ''' </summary>
@@ -939,7 +944,7 @@ public DataSet GetDataSet(string StoredProcedureName, ArrayList ParameterList =
939944
return _ds;
940945
}
941946

942-
#if NET45_OR_GREATER
947+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
943948
/// <summary>
944949
/// ''' Executes the provided StoredProcedure and returns a DataSet
945950
/// ''' </summary>
@@ -1020,7 +1025,7 @@ public string[] GetArrayFromDataReader(string StoredProcedureName, ArrayList Par
10201025
return returnValue;
10211026
}
10221027

1023-
#if NET45_OR_GREATER
1028+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
10241029
/// <summary>
10251030
/// ''' Executes the provided StoredProcedure and returns a String Array
10261031
/// ''' </summary>
@@ -1084,7 +1089,7 @@ public string[] GetArrayFromDataReader(string StoredProcedureName, ArrayList Par
10841089
return returnValue;
10851090
}
10861091

1087-
#if NET45_OR_GREATER
1092+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
10881093
/// <summary>
10891094
/// ''' Executes the provided StoredProcedure and returns an Object
10901095
/// ''' </summary>
@@ -1143,7 +1148,7 @@ public ArrayList GetArrayListFromDataReader(string StoredProcedureName, ArrayLis
11431148
return _s;
11441149
}
11451150

1146-
#if NET45_OR_GREATER
1151+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
11471152
/// <summary>
11481153
/// ''' Executes the provided StoredProcedure and returns an ArrayList
11491154
/// ''' </summary>
@@ -1209,7 +1214,7 @@ public ArrayList GetArrayListFromDataReader(string StoredProcedureName, ArrayLis
12091214
return _s;
12101215
}
12111216

1212-
#if NET45_OR_GREATER
1217+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
12131218
/// <summary>
12141219
/// ''' Executes the provided StoredProcedure and returns an ArrayList
12151220
/// ''' </summary>
@@ -1294,7 +1299,7 @@ public object GetOutputParameterValueFromSP(string StoredProcedureName, string O
12941299
return _result;
12951300
}
12961301

1297-
#if NET45_OR_GREATER
1302+
#if NET45_OR_GREATER || NET5_0_OR_GREATER
12981303
/// <summary>
12991304
/// ''' Executes the provided StoredProcedure and returns an Object with the output parameters rules in it
13001305
/// ''' </summary>

Utility.DatabaseInterface/Release Notes.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ This .dll simplifies the process of connecting to a MS SQL Database and retrievi
44

55
***
66

7+
**Update 1.1.2 - 06/02/2021**
8+
* Added sending in the connection string when instantiating the DB_Interface class.
9+
* Corrected an issue with an if statement that caused Async calls to not work in .NET 5.0.
10+
711
**Update 1.1.1 - 05/31/2021**
812
* Added .NET 5.0 support.
9-
* .NET 5 changes the SQL client from System.Data.SqlClient to Microsoft.Data.SqlClient.
13+
* .NET 5.0 changes the SQL client from System.Data.SqlClient to Microsoft.Data.SqlClient.
1014
* This change is supported in .NET Framework 4.6.1 and above, but I am only referencing it in .NET 5 for backwards compatability.
1115
* Corrected an issue with the Release Notes version numbers.
1216

Utility.DatabaseInterface/Utility.DatabaseInterface.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<RepositoryType>git</RepositoryType>
1111
<RepositoryUrl>https://github.com/an-d-uu/Utility.DatabaseInterface</RepositoryUrl>
1212
<PackageReleaseNotes>Release Notes.md</PackageReleaseNotes>
13-
<Version>1.1.1</Version>
13+
<Version>1.1.2</Version>
1414
</PropertyGroup>
1515

1616
<ItemGroup>

0 commit comments

Comments
 (0)