Forum Discussion
syedfasiullah
10 months agoNew Contributor II
Thanks Hector - what if I have more than 1000 rows, then how would I do it? I tried that option, it has maximum of only 1000 rows.
Thanks
FredLucas
10 months agoContributor III
Hi syedfasiullah,
In that case you might want to export the content of the table to .csv via a business rule.
You could do this by getting the data you want to export into a data table object like this:
Dim dtResult As DataTable
Using dbConnApp As DBConnInfo = BRApi.Database.CreateApplicationDbConnInfo(si)
Dim strSQL As New Text.StringBuilder
strSQL.AppendLine("Select * from TableToExport")
dtResult = BRApi.Database.ExecuteSqlUsingReader(dbConnApp, strSQL.ToString, False)
End Using
And then use the DataTableToFile function that I've shared on this post:
- syedfasiullah10 months agoNew Contributor II
Thank you for providing help, let me try this and get back to you.
Related Content
- 20 days ago
- 2 years ago