Examples of checkVersion()


Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

    DataDictionary dd = getLanguageConnectionContext().getDataDictionary();

    // If dictionary version is below 10.2, special case
    // getColumnPrivileges and getTablePrivileges since new system tables
    // for privileges wouldn't be present.
    if (!dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_2, null))
    {
      if (queryName.equals("getColumnPrivileges"))
        queryName = "getColumnPrivileges_10_1";

      if (queryName.equals("getTablePrivileges"))
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

    TemporaryRowHolderImpl singleRow;
    DataDictionary dd = activation.getLanguageConnectionContext().getDataDictionary();
    // In soft upgrade mode, we could be dealing with databases created
    // with 10.8 or prior and for such databases, we do not want to do
    // any column reading optimization to maintain backward compatibility
    if (!dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_9,null)) {
        singleRow =
          new TemporaryRowHolderImpl(activation, null,
               rs.getResultDescription());
      singleRow.insert(rs.getCurrentRow());
      return (TemporaryRowHolderResultSet) singleRow.getResultSet();
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

      // Check is only performed if we have
      // derby.database.sqlAuthorization == true and we have
      // upgraded dictionary to at least level 10.4 (roles
      // introduced in 10.4):
      if (lcc.usesSqlAuthorization() &&
        dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_4, null)) {

        TransactionController tc = lcc.getTransactionExecute();

        String failedString =
          MessageService.getTextMessage(MessageId.AUTH_INVALID);
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

            ConstraintDefinitionNode.ENFORCED_DEFAULT
        };

        for (int i=0; i < characteristics.length; i++) {
            if (characteristics[i] != defaults[i]) {
                dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_11,
                                "DEFERRED CONSTRAINTS");

                if (constraintType == DataDictionary.NOTNULL_CONSTRAINT ||
                    !characteristics[2] /* not enforced */) {

View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

      // Check is only performed if we have
      // derby.database.sqlAuthorization == true and we have
      // upgraded dictionary to at least level 10.4 (roles
      // introduced in 10.4):
      if (lcc.usesSqlAuthorization() &&
        dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_4, null)) {

        TransactionController tc = lcc.getTransactionExecute();

        String failedString =
          MessageService.getTextMessage(MessageId.AUTH_INVALID);
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

    DataDictionary dd = getLanguageConnectionContext().getDataDictionary();

    // If dictionary version is below 10.2, special case
    // getColumnPrivileges and getTablePrivileges since new system tables
    // for privileges wouldn't be present.
    if (!dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_2, null))
    {
      if (queryName.equals("getColumnPrivileges"))
        queryName = "getColumnPrivileges_10_1";

      if (queryName.equals("getTablePrivileges"))
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

    DataDictionary dd = getLanguageConnectionContext().getDataDictionary();

    // If dictionary version is below 10.2, special case
    // getColumnPrivileges and getTablePrivileges since new system tables
    // for privileges wouldn't be present.
    if (!dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_2, null))
    {
      if (queryName.equals("getColumnPrivileges"))
        queryName = "getColumnPrivileges_10_1";

      if (queryName.equals("getTablePrivileges"))
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

    TemporaryRowHolderImpl singleRow;
    DataDictionary dd = activation.getLanguageConnectionContext().getDataDictionary();
    // In soft upgrade mode, we could be dealing with databases created
    // with 10.8 or prior and for such databases, we do not want to do
    // any column reading optimization to maintain backward compatibility
    if (!dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_9,null)) {
        singleRow =
          new TemporaryRowHolderImpl(activation, null,
               rs.getResultDescription());
      singleRow.insert(rs.getCurrentRow());
      return (TemporaryRowHolderResultSet) singleRow.getResultSet();
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

      // Check is only performed if we have
      // derby.database.sqlAuthorization == true and we have
      // upgraded dictionary to at least level 10.4 (roles
      // introduced in 10.4):
      if (lcc.usesSqlAuthorization() &&
        dd.checkVersion(DataDictionary.DD_VERSION_DERBY_10_4, null)) {

        TransactionController tc = lcc.getTransactionExecute();

        String failedString =
          MessageService.getTextMessage(MessageId.AUTH_INVALID);
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.DataDictionary.checkVersion()

            throw new IllegalStateException("No context, unable to determine " +
                    "which stream header format to generate");
        } else {
            DataDictionary dd = dbCtx.getDatabase().getDataDictionary();
            try {
                isPreDerbyTenFive = Boolean.valueOf(!dd.checkVersion(
                        DataDictionary.DD_VERSION_DERBY_10_5, null));
            } catch (StandardException se) {
                // This should never happen as long as the second argument
                // above is null. If it happens, just bomb out.
                IllegalStateException ise =
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.