Forum Discussion
mkohorst
3 years agoNew Contributor II
Actually agree with Daniel, normally you just do something like this:
Dim dt As DataTable = Nothing
Using dbConnApp As DbConnInfo = BRAPi.Database.CreateApplicationDbConnInfo(si)
dt = BRApi.Database.ExecuteSql(dbConnApp, sql.ToString, False)
End Using
Or this:
Using dt As DataTable = BRApi.Database.ExecuteSql(dbConnApp, sql.ToString, False)
End Using
JackLacava
OneStream Employee
3 years agoFails with that too, I checked.
Related Content
- 10 months ago
- 4 years ago