I have the following SQL:
select visits.*, visits.rowid, accounts.name
from vists,accounts
where visits.AccountNo = accounts.AccountNo
When the DBText for accounts.name is displayed for existing records, everything is ok.
When I insert a record, the DBText field is blank. What method can...