Package org.apache.derby.iapi.types

Examples of org.apache.derby.iapi.types.DataValueDescriptor


            SchemaDescriptor sd,
            boolean forUpdate)
            throws StandardException
  {
    ExecIndexRow        keyRow2 = null;
    DataValueDescriptor      nameOrderable;
    DataValueDescriptor      schemaIDOrderable = null;
    TabInfoImpl            ti = coreInfo[SYSCONGLOMERATES_CORE_NUM];

    nameOrderable = new SQLVarchar(indexName);
    schemaIDOrderable = getIDValueAsCHAR(sd.getUUID());
View Full Code Here


            ConglomerateDescriptor conglomerate,
            TransactionController tc)
            throws StandardException
  {
    ExecIndexRow      keyRow2 = null;
    DataValueDescriptor    nameOrderable;
    DataValueDescriptor    schemaIDOrderable = null;
    TabInfoImpl          ti = coreInfo[SYSCONGLOMERATES_CORE_NUM];

    nameOrderable = new SQLVarchar(conglomerate.getConglomerateName());
    schemaIDOrderable = getIDValueAsCHAR(conglomerate.getSchemaID());
View Full Code Here

            TableDescriptor td,
            TransactionController tc)
          throws StandardException
  {   
    ExecIndexRow      keyRow3 = null;
    DataValueDescriptor    tableIDOrderable;
    TabInfoImpl          ti = coreInfo[SYSCONGLOMERATES_CORE_NUM];

    /* Use tableIDOrderable in both start
     * and stop position for index 3 scan.
     */
 
View Full Code Here

                 String authorizationId,
                 TransactionController tc)
    throws StandardException
  {
    ExecIndexRow        keyRow;
    DataValueDescriptor      schemaNameOrderable;
    TabInfoImpl            ti = coreInfo[SYSSCHEMAS_CORE_NUM];

    /* Use schemaNameOrderable in both start
     * and stop position for index 1 scan.
     */
 
View Full Code Here

                       TransactionController tc)
    throws StandardException
  {
    ExecIndexRow        keyRow1 = null;
    ExecRow             row;
    DataValueDescriptor      conglomIDOrderable;
    TabInfoImpl            ti = coreInfo[SYSCONGLOMERATES_CORE_NUM];
    SYSCONGLOMERATESRowFactory  rf = (SYSCONGLOMERATESRowFactory) ti.getCatalogRowFactory();
    boolean[] bArray = {false, false, false};

    for (int i = 0; i < cds.length; i++)
View Full Code Here

   */
  public List getDependentsDescriptorList(String dependentID)
    throws StandardException
  {
    List          ddlList = newSList();
    DataValueDescriptor    dependentIDOrderable;
    TabInfoImpl          ti = getNonCoreTI(SYSDEPENDS_CATALOG_NUM);

    /* Use dependentIDOrderable in both start and stop positions for scan */
    dependentIDOrderable = new SQLChar(dependentID);

View Full Code Here

   */
  public List getProvidersDescriptorList(String providerID)
    throws StandardException
  {
    List          ddlList = newSList();
    DataValueDescriptor    providerIDOrderable;
    TabInfoImpl          ti = getNonCoreTI(SYSDEPENDS_CATALOG_NUM);

    /* Use providerIDOrderable in both start and stop positions for scan */
    providerIDOrderable = new SQLChar(providerID);

View Full Code Here

        throws StandardException
  {
    ExecIndexRow      keyRow1 = null;
    UUID          dependentID = dd.getUUID();
    UUID          providerID = dd.getProviderID();
    DataValueDescriptor    dependentIDOrderable = getIDValueAsCHAR(dependentID);
    TabInfoImpl          ti = getNonCoreTI(SYSDEPENDS_CATALOG_NUM);

    /* Use dependentIDOrderable in both start
     * and stop position for index 1 scan.
     */
 
View Full Code Here

                     TransactionController tc,
                     boolean wait)
        throws StandardException 
  {
    ExecIndexRow      keyRow1 = null;
    DataValueDescriptor    dependentIDOrderable;
    TabInfoImpl          ti = getNonCoreTI(SYSDEPENDS_CATALOG_NUM);

    /* Use dependentIDOrderable in both start
     * and stop position for index 1 scan.
     */
 
View Full Code Here

   * @exception StandardException    Thrown on failure
   */
  public AliasDescriptor getAliasDescriptor(UUID uuid)
        throws StandardException
  {
    DataValueDescriptor    UUIDStringOrderable;
    SYSALIASESRowFactory  rf;
    TabInfoImpl          ti = getNonCoreTI(SYSALIASES_CATALOG_NUM);

    rf = (SYSALIASESRowFactory) ti.getCatalogRowFactory();

View Full Code Here

TOP

Related Classes of org.apache.derby.iapi.types.DataValueDescriptor

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.