SQL-Abfrage
Simon
- asp.net
Hallo,
ich brauche dringend Hilfe bei einer SQL-Abfrage:
Sobald ich die Abfrage kürze, z.B. auf "SELECT * FROM News WHERE NewsID=14" funktioniert es, aber nicht so wie unten aufgeführt. Habe die Abfrage auch direkt per Copy&Paste in Access ausprobiert, und es klappt dort. ?????
conn = Server.CreateObject("ADODB.Connection")
conn.Open("NewsDB")
var nq = "SELECT * FROM News, Posts, Locations WHERE News.NewsID = Posts.NewsID AND Posts.LocationID = Locations.LocationID AND Locations.Shortname = 'GSN'"
newsrs = Server.CreateObject("ADODB.recordset")
newsrs.Open(nq, conn)
Hi Simon,
was klappt denn nicht? Kommt eine Fehlermeldung, kommt ein leeres Recordset, oder was passiert sonst?
Gruß,
Martin