c# - MySQL View on one machine and a MySQL table in another machine. Query -
i have view located in mysql database in let machine1
i have machine mysql database in machine2
the view located in machine1 , table located in machine2 have same exact columns.
is there way query both @ same time so:
select * view join table1 on view.id = table1.id
string select = "select * view join table1 on view.id = table1.id"; oledbcommand run_select = new oledbcomamnd(select, con); oledbdatareader read_run_select = run_select.executereader(); etc. etc.
yes, can use connect storage engine. can connect other server , use on same machine
Comments
Post a Comment