I'm writing an application that is trying to bulk export data from a SQL Server database (with a given connection string) to a local file (in whatever format).
Normally the sql server utility BCP.exe would be ideal, however, the bcp utility may not be available on the machine my app is running on. Also, bcp is not considered a redistributable app.
My question then: Is it true that BCP.exe is not redistributable? If not, then what are the best redistributable modules available to me and my app.
Any solution will be considered.