Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Cursor (0.23 sec)

  1. src/database/sql/sql.go

    // string inputs parseable by [strconv.ParseBool].
    //
    // Scan can also convert a cursor returned from a query, such as
    // "select cursor(select * from my_table) from dual", into a
    // [*Rows] value that can itself be scanned from. The parent
    // select query will close any cursor [*Rows] if the parent [*Rows] is closed.
    //
    // If any of the first arguments implementing [Scanner] returns an error,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * href="https://developer.android.com/sdk/api_diff/16/">API Level 16</a> is the first version
         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	if !rows.Next() {
    		t.Fatal("no rows")
    	}
    	var cursor = &Rows{}
    	err = rows.Scan(cursor)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer cursor.Close()
    
    	const expectedRows = 3
    	var currentRow int64
    
    	var n int64
    	var s string
    	for cursor.Next() {
    		currentRow++
    		err = cursor.Scan(&s, &n)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * href="https://developer.android.com/sdk/api_diff/16/">API Level 16</a> is the first version
         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top