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

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -