Record ID Problem
Keith DeLong
delong at redcort.com
Mon Nov 24 16:17:53 CST 2003
Hi Mike,
Since it is not an actual field in your table, you need to ask for the RecID
explicitly in in your select statement.
> Can someone take a look at this and give me an
> idea of how to display Valentina's record ID?
> // Get the specific record into a DatabaseCursor
> curs = myDataBase.SQLSelect("SELECT * FROM Clients WHERE ID =" +
> str(ID))
Change the above to:
curs = myDataBase.SQLSelect("SELECT RECID,* FROM Clients WHERE ID =" +
str(ID))
HTH,
Keith DeLong
More information about the Valentina
mailing list