Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 264 for _columns (0.19 sec)

  1. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        #  The list of column DB names that need to be quoted. Specified columns is quoted on auto-generated SQL.
        #
        #; quoteColumnNameList = list:{}
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o columnNullObjectMap: (NotRequired - Default map:{})
        #  You can get a null object when the column is null.
        #
        #; columnNullObjectMap = map:{
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8.8K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  If you want to exclude some columns in generating target,
            #  you should specify the list of excepted column hints.
            #    e.g. map:{HEAVY_MASTER = list:{APP_NOT_USED_ID; suffix:_IMAGE}}
            #  This is only for the main schema. Additional schemas are unconcerned.
            #
            #; columnExceptMap = map:{
            #    ; FOO_TABLE = list:{FOO_COLUMN ; prefix:FOO_ ; suffix:_FOO ; contain:_FOO_}
            #}
    
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ArrayTable.java

     *
     * <p>The allowed row and column keys must be supplied when the table is created. The table always
     * contains a mapping for every row key / column pair. The value corresponding to a given row and
     * column is null unless another value is provided.
     *
     * <p>The table's size is constant: the product of the number of supplied row keys and the number of
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  4. callbacks/associations.go

    	if len(defaultUpdatingColumns) > 0 || stmt.DB.FullSaveAssociations {
    		onConflict.Columns = make([]clause.Column, 0, len(s.PrimaryFieldDBNames))
    		for _, dbName := range s.PrimaryFieldDBNames {
    			onConflict.Columns = append(onConflict.Columns, clause.Column{Name: dbName})
    		}
    
    		onConflict.UpdateAll = stmt.DB.FullSaveAssociations
    		if !onConflict.UpdateAll {
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Tue Apr 11 03:06:13 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  5. tests/upsert_test.go

    	} else if len(langs) != 1 {
    		t.Errorf("should only find only 1 languages, but got %+v", langs)
    	}
    
    	lang3 := Language{Code: "upsert", Name: "Upsert"}
    	if err := DB.Clauses(clause.OnConflict{
    		Columns:   []clause.Column{{Name: "code"}},
    		DoUpdates: clause.Assignments(map[string]interface{}{"name": "upsert-new"}),
    	}).Create(&lang3).Error; err != nil {
    		t.Fatalf("failed to upsert, got %v", err)
    	}
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Sep 05 07:39:19 GMT 2022
    - 11.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ArrayTable.java

     *
     * <p>The allowed row and column keys must be supplied when the table is created. The table always
     * contains a mapping for every row key / column pair. The value corresponding to a given row and
     * column is null unless another value is provided.
     *
     * <p>The table's size is constant: the product of the number of supplied row keys and the number of
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Table.java

       * @return the corresponding map from column keys to values
       */
      Map<C, V> row(@ParametricNullness R rowKey);
    
      /**
       * Returns a view of all mappings that have the given column key. For each row key / column key /
       * value mapping in the table with that column key, the returned map associates the row key with
       * the value. If no mappings in the table have the provided column key, an empty map is returned.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 10.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Tables.java

       *
       * <p>The views returned by the {@code Table} methods {@link Table#column}, {@link
       * Table#columnKeySet}, and {@link Table#columnMap} have iterators that don't support {@code
       * remove()}. Otherwise, all optional operations are supported. Null row keys, columns keys, and
       * values are not supported.
       *
       * <p>Lookups by row key are often faster than lookups by column key, because the data is stored
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 22:45:41 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/documentMap.dfprop

        #  Does it check differences of column-def order?
        #  (except added or deleted columns)
        #
        #; isCheckColumnDefOrderDiff = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isCheckDbCommentDiff: (NotRequired - Default false)
        #  Does it check differences of table or column or others comment?
        #
        #; isCheckDbCommentDiff = false
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/ArrayTableTest.java

        }
      }
    
      public void testColumnMissing() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        Map<String, Character> column = table.column(4);
        assertTrue(column.isEmpty());
        try {
          column.put("foo", 'd');
          fail();
        } catch (UnsupportedOperationException expected) {
        }
      }
    
      public void testRowPutIllegal() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top