Hi,
i have a problem: after inserting a new line with
addnew/update, I need the new ID. With ms ACCESS is it
simple: I just get a new id. But with sap db is it
impossible. Here is my code:
------------------------------------------------------------
----------------
                oRs.Open "SELECT * FROM TESTTABLE", Conn, 1, 3
                oRs.AddNew
                oRs("TESTCOLUMN") = False
                oRs.Update
                NewID = oRs("BLOCK_ID")
                ' NewID is empty
------------------------------------------------------------
----------------

at the moment i do it in this way:
------------------------------------------------------------
----------------
                oRs.Open "SELECT * FROM TESTTABLE", Conn, 3(!), 3
                oRs.AddNew
                oRs("TESTCOLUMN") = False
                oRs.Update
                oRs.Requery
                oRs.MoveLast
                NewID = oRs("BLOCK_ID")
------------------------------------------------------------
----------------
This way is not ideal.



Best regards,

Alexei Livchits
e-mail: [EMAIL PROTECTED]

_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to