Package de.fuberlin.wiwiss.d2rq.sql.vendor

Examples of de.fuberlin.wiwiss.d2rq.sql.vendor.Vendor


    assertEquals("\"sch\"\"ema\".\"ta\"\"ble\".\"col\"\"umn\"",
        db.quoteAttribute(new Attribute("sch\"ema", "ta\"ble", "col\"umn")));
  }
 
  public void testAttributeQuotingMySQL() {
    Vendor db = Vendor.MySQL;
    assertEquals("`table`.`column`",
        db.quoteAttribute(new Attribute(null, "table", "column")));
  }
View Full Code Here

TOP

Related Classes of de.fuberlin.wiwiss.d2rq.sql.vendor.Vendor

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.