In an ASP page (VBScript) that gets a recordset from a *.MDB Access database, how can I simulate the LIMIT clause of MySQL in the SQL?
<%
Dim cn,rs
Set cn = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
cn.Open dbConnectionString
Dim sql
sql = "SELECT * FROM mytable LIMIT 10,50"
Set rs = cn.Execute(sql)
%>