Abfrage der Tabelle mobile mit ASP<% Set oConn = Server.CreateObject("ADODB.Connection") oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=ftp://u52194505@www.ost-mobil.de/wsb5219450501/data/mobil.mdb;" Set RS = oConn.Execute("SELECT * FROM mobil") While Not (RS.EOF) Response.Write RS("Typenbezeichnung") & " - " & RS("Hersteller") & " - " & RS.MoveNext WEnd RS.Close Set RS = Nothing oConn.Close Set oConn = Nothing %> |