Home | History | Annotate | Download | only in sql

Lines Matching refs:FROM

102 //         delete from Invoice
153 // err := db.QueryRow("SELECT name FROM foo WHERE id=?", id).Scan(&s)
264 // Scan assigns a value from a database driver.
454 // *driverConn from which it came, so the driverConn's lock can be
1075 delete(db.connRequests, reqKey) // Remove from pending requests.
1098 // Multiple queries or executions may be run concurrently from the
1121 // Multiple queries or executions may be run concurrently from the
1405 // closemu prevents the transaction from closing while there
1415 // done transitions from 0 to 1 exactly once, on Commit
1428 // cancel is called after done transitions from false to true.
1608 // StmtContext returns a transaction-specific prepared statement from
1630 return &Stmt{stickyErr: errors.New("sql: Tx.Stmt: statement from different database used")}
1656 // Stmt returns a transaction-specific prepared statement from
1762 db *DB // where we came from
1781 // lastNumClosed is copied from db.numClosed when Stmt is created
2100 // closemu prevents Rows from closing while there
2219 // are from QueryRow and there was a deferred error.
2233 // and nullable. Some information may not be available from some drivers.
2339 // Scan converts columns read from the database into the following
2352 // In the most simple case, if the type of the value from the source
2358 // scanned from numeric database columns into *string, scans into
2374 // from a source value of type []byte to *interface{}, a copy of the
2456 // Scan copies the columns from the matched row into the values
2469 // the Rows in our defer, when we return from this function.
2476 // from Next will not be modified again." (for instance, if
2477 // they were obtained from the network anyway) But for now we
2507 // in response to a command. Typically this will be from an