Forum Discussion
Mustafa_A
Contributor II
Hi hoaphan
Were you able to implement this BR? I'm trying to figure how did you setup the source target?
ChristianW
3 years agoValued Contributor
Something like this, gives you the datatable object:
'Define the SQL Statement
Dim sql As New Text.StringBuilder
sql.Append("Select * ")
sql.Append("From <Your Table> ")
sql.Append("Where <your Restrictions> ")
Dim dt as datatable
Using dbConnApp As DBConnInfo = BRAPi.Database.CreateApplicationDbConnInfo(si)
dt = BRAPi.Database.ExecuteSql(dbConnApp, sql.ToString, False)
End Using
Related Content
- 2 years ago
- 11 months ago
- 11 months ago
- 11 months ago