> >>>curs.execute("Select * from test;") Try dir(curs) and see if there are next, prev, first, last, etc methods. Always a good idea with an object to ask it "what can you do for me"... dir(obj) is how you ask. Warren