CONNECT PROXY Table Type
The CONNECT storage engine has been deprecated.
CREATE TABLE xboy ENGINE=CONNECT
table_type=PROXY tabname=boys;CREATE TABLE xboy ENGINE=CONNECT tabname=boys;Proxy on non-CONNECT Tables
... option_list='Password=mypass';... option_list='user=proxy';Using a PROXY Table as a View
CREATE TABLE city (
city VARCHAR(11),
boy CHAR(12) flag=1,
birth DATE)
ENGINE=CONNECT tabname=boys;
SELECT * FROM city;city
boy
birth
Avoiding PROXY table loop
Modifying Operations
Last updated
Was this helpful?

