7
7
using System ;
8
8
using System . Data ;
9
9
using System . Collections ;
10
- #if NET45_OR_GREATER
10
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
11
11
using System . Threading . Tasks ;
12
12
#endif
13
13
@@ -19,6 +19,11 @@ public DB_Interface() : base()
19
19
{
20
20
ConnectionString = string . Empty ;
21
21
}
22
+
23
+ public DB_Interface ( string connectionString ) : base ( )
24
+ {
25
+ ConnectionString = connectionString ;
26
+ }
22
27
#region "Properties"
23
28
/// <summary>
24
29
/// ''' 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)
80
85
81
86
return _returnVal ;
82
87
}
83
- #if NET45_OR_GREATER
88
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
84
89
/// <summary>
85
90
/// ''' Runs a SQL statement and returns Nothing upon successful completion
86
91
/// ''' </summary>
@@ -178,7 +183,7 @@ public string RunSQL(string strSQL, ArrayList ParameterList = default, Int32 Tim
178
183
return _returnVal ;
179
184
}
180
185
181
- #if NET45_OR_GREATER
186
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
182
187
/// <summary>
183
188
/// ''' Runs a SQL statement and returns Nothing upon successful completion
184
189
/// ''' </summary>
@@ -289,7 +294,7 @@ public DataTable GetDataTableFromReader(string StoredProcedureName, ArrayList Pa
289
294
return _dt ;
290
295
}
291
296
292
- #if NET45_OR_GREATER
297
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
293
298
/// <summary>
294
299
/// ''' Executes the provided StoredProcedure and returns a datatable
295
300
/// ''' </summary>
@@ -404,7 +409,7 @@ public DataTable GetDataTableFromReaderUsingSQL(string SQL, ArrayList ParameterL
404
409
return _dt ;
405
410
}
406
411
407
- #if NET45_OR_GREATER
412
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
408
413
/// <summary>
409
414
/// ''' Executes the provided SQL and returns a datatable
410
415
/// ''' </summary>
@@ -519,7 +524,7 @@ public string RunStoredProcedure(string StoredProcedureName, ArrayList Parameter
519
524
return _returnVal ;
520
525
}
521
526
522
- #if NET45_OR_GREATER
527
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
523
528
/// <summary>
524
529
/// ''' Executes the provided StoredProcedure and returns either Success or Error
525
530
/// ''' </summary>
@@ -633,7 +638,7 @@ public DbDataRecord GetRowFromDataReader(string StoredProcedureName, ArrayList P
633
638
return dataRecord ;
634
639
}
635
640
636
- #if NET45_OR_GREATER
641
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
637
642
/// <summary>
638
643
/// ''' Executes the provided StoredProcedure and returns the DbDataRecord
639
644
/// ''' </summary>
@@ -747,7 +752,7 @@ public object GetValueFromSP(string StoredProcedureName, ArrayList ParameterList
747
752
return Result ;
748
753
}
749
754
750
- #if NET45_OR_GREATER
755
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
751
756
/// <summary>
752
757
/// ''' Executes the provided StoredProcedure and returns an Object
753
758
/// ''' </summary>
@@ -848,7 +853,7 @@ public string GetValueFromSQL(string SQL, ArrayList ParameterList = default, Int
848
853
return Result ;
849
854
}
850
855
851
- #if NET45_OR_GREATER
856
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
852
857
/// <summary>
853
858
/// ''' Executes the provided sql statement and returns the value specified in the sql statement.
854
859
/// ''' </summary>
@@ -939,7 +944,7 @@ public DataSet GetDataSet(string StoredProcedureName, ArrayList ParameterList =
939
944
return _ds ;
940
945
}
941
946
942
- #if NET45_OR_GREATER
947
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
943
948
/// <summary>
944
949
/// ''' Executes the provided StoredProcedure and returns a DataSet
945
950
/// ''' </summary>
@@ -1020,7 +1025,7 @@ public string[] GetArrayFromDataReader(string StoredProcedureName, ArrayList Par
1020
1025
return returnValue ;
1021
1026
}
1022
1027
1023
- #if NET45_OR_GREATER
1028
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
1024
1029
/// <summary>
1025
1030
/// ''' Executes the provided StoredProcedure and returns a String Array
1026
1031
/// ''' </summary>
@@ -1084,7 +1089,7 @@ public string[] GetArrayFromDataReader(string StoredProcedureName, ArrayList Par
1084
1089
return returnValue ;
1085
1090
}
1086
1091
1087
- #if NET45_OR_GREATER
1092
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
1088
1093
/// <summary>
1089
1094
/// ''' Executes the provided StoredProcedure and returns an Object
1090
1095
/// ''' </summary>
@@ -1143,7 +1148,7 @@ public ArrayList GetArrayListFromDataReader(string StoredProcedureName, ArrayLis
1143
1148
return _s ;
1144
1149
}
1145
1150
1146
- #if NET45_OR_GREATER
1151
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
1147
1152
/// <summary>
1148
1153
/// ''' Executes the provided StoredProcedure and returns an ArrayList
1149
1154
/// ''' </summary>
@@ -1209,7 +1214,7 @@ public ArrayList GetArrayListFromDataReader(string StoredProcedureName, ArrayLis
1209
1214
return _s ;
1210
1215
}
1211
1216
1212
- #if NET45_OR_GREATER
1217
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
1213
1218
/// <summary>
1214
1219
/// ''' Executes the provided StoredProcedure and returns an ArrayList
1215
1220
/// ''' </summary>
@@ -1294,7 +1299,7 @@ public object GetOutputParameterValueFromSP(string StoredProcedureName, string O
1294
1299
return _result ;
1295
1300
}
1296
1301
1297
- #if NET45_OR_GREATER
1302
+ #if NET45_OR_GREATER || NET5_0_OR_GREATER
1298
1303
/// <summary>
1299
1304
/// ''' Executes the provided StoredProcedure and returns an Object with the output parameters rules in it
1300
1305
/// ''' </summary>
0 commit comments