Home
SQL Data Sets - Online help Prev Page Prev Page
Introduction
About SQL Data Sets
Version history
Supported database engines
Contact us
Getting started
Creating a result set package
Opening and using a SQL Data Sets package
Using SQL Data Sets
Connecting to a database server
Conecting to databases directly without client libraries installed
Connecting to an Oracle database
The SQL workspace
SQL editor
Data sets
HTML export
Adding and viewing notes
Viewing images
Creating a package
Exporting to a SQLite database
Options
Using SQL Data Sets Viewer
Opening a package
Local queries
Local SQL commands and functions

HTML export

Data exported to HTML files will appear in a grid like this:

exporthtml  

You can customize the grid by using your own styles in a HTML template file. In the Export
dialog, enter the file name of the HTML template file:

exporthtml02  

SQL Data Sets will use the template file, and insert the exported grid into the file before the closing body tag. If no HTML template file is provided, SQL Data Sets uses the default template, defined as follows:

<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8">
<meta name="GENERATOR" content="SQL Data Sets">
<title>Data exported by SQL Data Sets</title>

<style type="text/css">
table {
  border-width: 1px;
  border-spacing: 1px;
  border-style: outset;
  border-color: gray;
  border-collapse: collapse;
  background-color: white;
}
   
 tr.sep {
  background-color: #f5f5f5;
}   

td.header {
  background-color: #dddddd;
  font-weight: bold;      
}

td {
  border-width: 1px;
  padding: 2px 8px 2px 8px;
}

</style>
 
</head>

<body bgcolor="#FFFFFF">
</body>
</html>