Update prepares and returns an Updater targeted at the given table. Example: q := sqlbuilder.Update("profile").Set(...).Where(...)
(table string)
| 79 | // |
| 80 | // q := sqlbuilder.Update("profile").Set(...).Where(...) |
| 81 | Update(table string) Updater |
| 82 | |
| 83 | // Exec executes a SQL query that does not return any rows, like sql.Exec. |
| 84 | // Queries can be either strings or upper-db statements. |
no outgoing calls