Example usage for java.sql Connection createSQLXML

List of usage examples for java.sql Connection createSQLXML

Introduction

In this page you can find the example usage for java.sql Connection createSQLXML.

Prototype

SQLXML createSQLXML() throws SQLException;

Source Link

Document

Constructs an object that implements the SQLXML interface.

Usage

From source file:com.adaptris.jdbc.connection.FailoverDatasourceTest.java

@Test
public void testTypes() throws Exception {
    Connection conn = new MyProxy();

    try {//from  ww  w. jav a2  s.  c om
        try {
            conn.createBlob();
        } catch (Exception e) {

        }
        try {
            conn.createClob();
        } catch (Exception e) {

        }
        try {
            conn.createNClob();
        } catch (Exception e) {

        }
        try {
            conn.createSQLXML();
        } catch (Exception e) {

        }
        try {
            conn.createStruct("java.lang.String", new String[] { "hello"

            });
        } catch (Exception e) {
        }
        try {
            conn.createArrayOf("java.lang.String", new String[] { "hello", "world" });
        } catch (Exception e) {
        }
    } finally {
        JdbcUtil.closeQuietly(conn);
    }
}