Compare commits
2 Commits
fc0a86a7b1
...
ce7b4ce21c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ce7b4ce21c | ||
|
|
42f0588079 |
@@ -271,13 +271,14 @@ Public Class MSSQLServer
|
||||
''' </summary>
|
||||
''' <param name="SqlCommand">sqlcommand for datatable (select XYZ from TableORView)</param>
|
||||
''' <returns>Returns a datatable</returns>
|
||||
''' <DebuggerStepThrough()>
|
||||
<DebuggerStepThrough()>
|
||||
Public Function GetDatatable(SqlCommand As String, Timeout As Integer) As DataTable Implements IDatabase.GetDatatable
|
||||
Using oSqlConnection = GetSQLConnection()
|
||||
Return GetDatatableWithConnectionObject(SqlCommand, oSqlConnection, TransactionMode.WithTransaction, Nothing, Timeout)
|
||||
End Using
|
||||
End Function
|
||||
|
||||
<DebuggerStepThrough()>
|
||||
Public Function GetDatatable(SqlCommand As String, Transaction As SqlTransaction, Optional Timeout As Integer = 120) As DataTable
|
||||
Using oSqlConnection = GetSQLConnection()
|
||||
Return GetDatatableWithConnectionObject(SqlCommand, oSqlConnection, TransactionMode.ExternalTransaction, Transaction, Timeout)
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.2.1.0")>
|
||||
<Assembly: AssemblyFileVersion("2.2.1.0")>
|
||||
<Assembly: AssemblyVersion("2.2.2.0")>
|
||||
<Assembly: AssemblyFileVersion("2.2.2.0")>
|
||||
|
||||
Reference in New Issue
Block a user