All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jtopenlite.com.ibm.jtopenlite.database.OperationalResultBitmap Maven / Gradle / Ivy

There is a newer version: 20.0.8
Show newest version
///////////////////////////////////////////////////////////////////////////////
//
// JTOpenLite
//
// Filename:  OperationalResultBitmap
//
// The source code contained herein is licensed under the IBM Public License
// Version 1.0, which has been approved by the Open Source Initiative.
// Copyright (C) 2011-2012 International Business Machines Corporation and
// others.  All rights reserved.
//
///////////////////////////////////////////////////////////////////////////////
package com.ibm.jtopenlite.database;

/**
 * The attributes should be OR-ed together when talking to the database host server.
**/
interface OperationalResultBitmap
{
  public static final int SEND_REPLY_IMMED =               0x80000000;
  public static final int MESSAGE_ID =                     0x40000000;
  public static final int FIRST_LEVEL_TEXT =               0x20000000;
  public static final int SECOND_LEVEL_TEXT =              0x10000000;
  public static final int DATA_FORMAT =                    0x08000000;
  public static final int RESULT_DATA =                    0x04000000;
  public static final int SQLCA =                          0x02000000;
  public static final int SERVER_ATTRIBUTES =              0x01000000;
  public static final int PARAMETER_MARKER_FORMAT =        0x00800000;
  public static final int TRANSLATION_TABLES =             0x00400000;
  public static final int DATA_SOURCE_INFORMATION =        0x00200000;
  public static final int PACKAGE_INFORMATION =            0x00100000;
  public static final int REQUST_RLE_COMPRESSED =          0x00080000;
  public static final int REPLY_RLE_COMPRESSED =           0x00040000;
  public static final int EXTENDED_COLUMN_DESCRIPTORS =    0x00020000;
  public static final int REPLY_VARLEN_COLUMN_COMPRESSED = 0x00010000;
  public static final int RETURN_RESULT_SET_ATTRIBUTES =   0x00008000;
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy