Ahh.. WROX Begining databases huh? 
Try :
sSQL = "Select [column],[column] from BoatClass"
set oRS=server.CreateObject("adodb.recordset")
oRS.Open sSQL , "DSN=Sailors",adOpenDynamic,adLockBatchOptimistic
etc
With getstring, unless you want to format the rows differently (or use getrows) you only ask for the column names you need in the SQL string.
The previous database call, was opening the table and returning all reults.
If you specify the [column name] in the SQL string, itll only return those columns.
You then neednt worry about the display line:
Response.write oRS.GetString(adClipString,,"</td><td>","</td></tr><tr><td>"," ")
------------------
Spooky
"I am Spooky of Borg. Prepare to be assimilated, babycakes!"
Subscribe to OutFront News
Database / DRW Q & A
The Spooky Login!