I have a little problem.
there is a way to get last id inserted into db or i have to make a new query?
I explain better my question:
in vbscript using sqlserver2000 i can use this code:
varBookmark=rs.Bookmark
rs.Update
rs.Bookmark=varBookmark
in this way in I the new id just inserted!!!
how can i do this with postgres?
there is a way?
thanks