show and edit data from other database
Posted: Thu Jun 07, 2012 8:00 pm
Hi,
I wan't to show and edit a table from one database in another.
My database I opened is reg_onthaal.
With this sql I create my form (browsescreen)
When I open my browse screen, I get the data as espected. But when I try to open my edit form I get an error
Thanks again
Johan
I wan't to show and edit a table from one database in another.
My database I opened is reg_onthaal.
With this sql I create my form (browsescreen)
Code: Select all
select w.*, c.* from reg_begeleidingsteam.wachtlijsten w
left join reg_begeleidingsteam.clienten c on cl_id = wl_cl_id
left join reg_begeleidingsteam.wachtlijst_locatie on loc_id = wl_loc_id
left join reg_begeleidingsteam.problemen on wl_probleem = pro_id
left join reg_begeleidingsteam.beschikbaarheid on wl_beschikbaar = bes_id
left join reg_begeleidingsteam.reden_afsluit on afs_id = wl_reden_eind
where wl_eind is null
order by wl_loc_id, wl_start
Any idea if and how I can solve this?Table 'reg_onthaal.reg_begeleidingsteam.wachtlijsten' doesn't exist
Thanks again
Johan