recordset with join involving 3 or more tables
the initial value of form fields on page populated following recordset containing join:
select *
from customers_cus, orders_ord
where orders_ord.customerid_ord=customers_cus.customerid_cus , company_cus='" & request.form("companymenu") &"'
whenever database field orders_ord.customerid_ord not null, form fields on page preview fine. however, if orders_ord.customerid_ord null, receive following error message:
adodb.field error '800a0bcd'
either bof or eof true, or current record has been deleted. requested operation requires current record.
how make orders_ord.customerid_ord able null?
select *
from customers_cus, orders_ord
where orders_ord.customerid_ord=customers_cus.customerid_cus , company_cus='" & request.form("companymenu") &"'
whenever database field orders_ord.customerid_ord not null, form fields on page preview fine. however, if orders_ord.customerid_ord null, receive following error message:
adodb.field error '800a0bcd'
either bof or eof true, or current record has been deleted. requested operation requires current record.
how make orders_ord.customerid_ord able null?
More discussions in Develop server-side applications in Dreamweaver
adobe
Comments
Post a Comment