Board index » delphi » joined table update with ado in access
Alex
![]() Delphi Developer |
Sat, 20 Nov 2004 19:19:28 GMT
joined table update with ado in access
hi
D6 sp2 Ms access, it's a c/s ,server-side is ado + access, and client side is TClientDataSet + dcom. my question is : In server ,adodataset.commandtext is a joined sql script--- " select emp.*, dep.departmentname, edu.educationname , rig.rightname from employeedb emp, departmentdb dep, educationdb edu, rightdb rig where (emp.departmentid = dep.departmentid) and (emp.educationid=edu.educationid) and (emp.rightid=rig.rightid) " and the DataSetProvider's resolveTodataSet is true. then execute Clientdataset.open, i can get the record of querying, but so who can prompt me a solution. |