I have just started using Asp, and I am having problems getting my first script to access data from a Access database. I would very much appreciate it, if anyone could suggest a solution or at least tell me why the fault is occuring. Whenever I try to run the script it returns the error messages: <br><br>Microsoft OLE DB Provider for ODBC Drivers error '80040e14' <br><br>[Microsoft][ODBC Microsoft Access Driver] Syntax error in FROM clause. <br><br>/test.asp, line 17 <br><br><br><html><br><head><br><title>Brigantia Directory Search Results</title><br></head><br><body bgcolor="#FFFFFF"><br><b><i><font color="#000099" face="Verdana, Arial, Helvetica, sans-serif" size="4">Directory Search Results</font></i></b><br><br><br><br><hr><br><p>Next line from Ado will work if a DSN named brigantia has been set<br><br>for the example database which is named brig.mdb.</p><br><br><% <br> set oRS=server.CreateObject("ADODB.recordset"
<br> oRS.open "select * from group", "DSN=brigantia"<br> oRS.MoveFirst<br> Response.Write "<b>" & oRS("BusinessName"
& "</b>"<br>%><br><br><br><hr><br>Finished test page</p><br></body><br></html><br><br>