Package com.alibaba.otter.canal.parse.inbound.mysql

Examples of com.alibaba.otter.canal.parse.inbound.mysql.MysqlConnection


public class TableMetaCacheTest {

    @Test
    public void testSimple() {

        MysqlConnection connection = new MysqlConnection(new InetSocketAddress("127.0.0.1", 3306), "xxxxx", "xxxxx");
        try {
            connection.connect();
        } catch (IOException e) {
            Assert.fail(e.getMessage());
        }

        TableMetaCache cache = new TableMetaCache(connection);
View Full Code Here

TOP

Related Classes of com.alibaba.otter.canal.parse.inbound.mysql.MysqlConnection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.