Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 4 of 4 total
Thread Using SQL to Export a table to Excel
Wed, Dec 21 2011 7:48 AMPermanent Link

JansB

I have nearly completed my SQL script and am being instructed to export the results table to an Excel file. Is that possible through SQL statements in DBISam? Or will that need to be done through the table editor? Thank you.
Wed, Dec 21 2011 8:29 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

JansB


There's nothing in DBISAM which will export to native Excel format. If that's what is needed you'll have to buy a third party tool (check out scalabium.com). However, if all they want is a file that Excel can read you can export in csv format. You should be able to do that with the ExportTable method of the query.

I'm well out of date with DBISAM (4.25) so check out the pdf help file for an example.

Roy Lambert [Team Elevate]
Wed, Dec 21 2011 12:49 PMPermanent Link

JansB

Thank you once again for the help.
Wed, Dec 21 2011 1:23 PMPermanent Link

Walter Matte

Tactical Business Corporation


If you write out a CSV file - excel can open it directly.

"First Name","Last Name","Address",City"
"John P.,"Smith","123 Somewhere St.","Cornwall"
"Mary","Joans","","Tichbourne"



Simple to do....

Walter
Image