devxlogo

Quickly create HTML tables from an ADO Recordset

Quickly create HTML tables from an ADO Recordset

The ADO Recordset object exposes the GetString method, which returns the values in the Recordset into a formatted string. Here’s its syntax:

res = GetString([StringFormat As StringFormatEnum = adClipString], _    [NumRows As Long = -1], [ColumnDelimeter As String], _    [RowDelimeter As String], [NullExpr As String]) As String

This method is often used to quickly export a Recordset into a comma-delimited file, even though this approach has several flaws (for example, you can’t put quotes around string values).

The GetString method, however, turns to be very handy when generating HTML tables based on an ADO Recordset. The trick is to use the correct delimiters for the table’s cells and rows. Moreover, you must correctly complete the string with the opening tags for the first cell of the first row, and for the last cell of the last row. Here’s an example of how to implement this technique:

Dim rs, tmpSet rs = Server.CreateObject("ADODB.Recordset")rs.Open "publishers", "DSN=pubs"' open the table (you can set all the necessary attributes here)Response.Write "' convert the recordset to a tabletmp = rs.GetString( , , "
", "
", " ")' to complete the conversion you must add the opening TR and TD tags' for the very first cell, and drop the closing TD and TR tags' after the very last cellResponse.Write "
" & Left(tmp, Len(tmp) - 8)' close the tableResponse.Write "
"

Note that you must pass the HTML notation for “space”, that is ” “, in the last argument to GetString. If you don’t do so, Null values will not produce any table cell.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist