Java JDBC Derby Connection createXATransactionView(Statement s)

Here you can find the source of createXATransactionView(Statement s)

Description

Create a view that allows useful inspection of the active global transactions.

License

Apache License

Declaration

public static void createXATransactionView(Statement s)
        throws SQLException 

Method Source Code

//package com.java2s;
/*/*from   w ww . ja  va2  s.com*/

 Derby - Class org.apache.derby.impl.services.bytecode.CodeChunk

 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
 this work for additional information regarding copyright ownership.
 The ASF licenses this file to You under the Apache License, Version 2.0
 (the "License"); you may not use this file except in compliance with
 the License.  You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.

 */

import java.sql.SQLException;
import java.sql.Statement;

public class Main {
    /**
     * Create a view that allows useful inspection of the active
     * global transactions.
     */
    public static void createXATransactionView(Statement s)
            throws SQLException {
        s.execute("create view XATESTUTIL.global_xactTable as "
                + "select  cast(global_xid as char(2)) as gxid,"
                + " status, "
                + " CAST (case when first_instant is NULL then 'NULL' else 'false' end AS VARCHAR(8)) as readOnly, "
                + " cast (username as char(10)) as username, type "
                + " from syscs_diag.transaction_table");
    }
}

Related

  1. closeConnection()
  2. closeDB()
  3. createAndOpen(String databaseName)
  4. createConnection()
  5. createConnection(String userName, String password)
  6. deleteTestData()
  7. existsInSessionTable(String id, boolean verbose)
  8. getConnection()
  9. getConnection()