i have a recordset which is populated by an sql query similar "select
customer.custnu m,customer lname+customer. fname as
name,loans.loan num,loans.write offdate from customer,loans where
customer.custnu m=loans.custnum ". notice the lname+fname field. when i
update writeoffdate with a value, the new value never gets written back to
the database. if i just query "select * from loans", it does. is a
recordset populated by a query from multiple tables, or virtual fields (
lname+fname) not updatable? i have the cursor type set to adopenkeyset, so
that should be fine.
customer.custnu m,customer lname+customer. fname as
name,loans.loan num,loans.write offdate from customer,loans where
customer.custnu m=loans.custnum ". notice the lname+fname field. when i
update writeoffdate with a value, the new value never gets written back to
the database. if i just query "select * from loans", it does. is a
recordset populated by a query from multiple tables, or virtual fields (
lname+fname) not updatable? i have the cursor type set to adopenkeyset, so
that should be fine.
Comment