Export to ASCII CSV

Iron Speed Designer’s Application Wizard places an “Export to CSV” button in selected Table Report panels, such as in the Table Report page.  Exported files are saved in ASCII comma separated value (CSV) format, one data record per file row.

Exported Data Rows

Only the rows in the currently displayed data set are exported.  This is convenient for  application users who perform a search using the Search control and wish to export only the data subset that matches the search.

An exported data file.

Exported data columns

The exported rows include all data fields displayed in the associated table control; fields that are not displayed are not exported.  There are several caveats:

Column Type

Caveat

Date fields

Date fields are exported as per their display format strings and will be exported as they are displayed in the Table Report panel.  The time is included with the exported date if the display format includes the time.

The default format is m/d/yyyy

Password fields

Password fields are exported as shown in the table control.

Foreign key fields

Foreign key fields are exported as shown in the table control.  If the “Display as” database property is set for the field, then the selected text field will be exported instead of the underlying key value.

Large text and binary fields

Large text fields, such as the Memo field in Microsoft Access and the nText data type in Microsoft SQL Server, and binary fields, such as Image and BLOB's (binary large object), are not exported.  The ASCII CSV file format generally does not support large BLOB fields.

The column order in the exported file is the same as the column order in the underlying database table or view schema.  To achieve a different export order, we recommend creating a database view with the fields arranged in the desired column order.

Column headings

The exported data includes column headings in the first row of the data.  This makes it easy for other application programs to import the data and for you to map the columns in the exported file to corresponding data elements in the application into which you ultimately import the file.

The column heading is a “pretty printed” version of the corresponding database field name.  For example, a database field named “CompanyName” will be expanded to “Company Name”.  This pretty printing is governed by a naming policy.  However, you can change the column headings by changing the label text for the appropriate field in the Databases.

Exported date and time formats

Only the rows in the currently displayed data set are exported.  This is convenient for  application users who perform a search using the Search control and wish to export only the data subset that matches the search.  There is no limit to the number of rows that may be exported.

UTF-8 character set encoding

The CSV file created by the Export function in your application has UTF-8 encoding.  Microsoft Excel needs Unicode formatting to properly display double-byte character sets, such as the Chinese language characters.  You can convert an exported CSV file from UTF-8 to Unicode by opening the exported file in Notepad and then saving the file in Unicode format.  After saving the file in Unicode format, you can open the CSV file in Excel which will then display the appropriate double-byte characters, such as Chinese language characters.

Column separator character

The list separator used to separate the data columns in the exported file is determined by the application user interface (UI) culture setting selected by the application user on the Upper Tool Bar.  If the application user did not select a specific culture, the default application culture specified on the Application Information step of the Application Wizard is used.  The application server’s UI culture is not used to determine the separator.

Microsoft Excel loses leading zeros in strings that are composed of numbers

While records exported using the Export to CSV feature are opened in a Microsoft Excel file, strings that are composed of numbers and have leading zeroes are displayed with the leading zeroes truncated.

For example, the values ‘0893’ and ‘05463’  when imported into an Excel file will be displayed as ‘893’ and ‘5463’ respectively.  Microsoft Excel determines that the exported string value is a number, and drops the leading zeros.  This is not an Iron Speed Designer behavior.  The leading zeroes are retained if the file is imported into most text editors.

For details, see http://support.microsoft.com/kb/214233

Export times out

There is no limit on the number of rows you can export.  However, if you are exporting a large number of rows, the export process may time out.  You may wish to adjust (increase) the executionTimeout parameter in the httpRuntime section of your application’s Web.config file if you experience time out errors.

See Also

Application Function Buttons

PDF Report

Microsoft Word Report

Export to Microsoft Excel

Export to ASCII CSV

Data Import Wizard