Update wiki pages.
This commit is contained in:
parent
fafe0866ea
commit
67e6fca0ce
13 changed files with 350 additions and 51 deletions
|
|
@ -56,7 +56,7 @@ func (i *insertStatementImpl) QUERY(selectStatement SelectStatement) InsertState
|
|||
}
|
||||
|
||||
func (i *insertStatementImpl) DebugSql() (query string, err error) {
|
||||
return DebugSql(i)
|
||||
return debugSql(i)
|
||||
}
|
||||
|
||||
func (i *insertStatementImpl) Sql() (sql string, args []interface{}, err error) {
|
||||
|
|
@ -147,17 +147,17 @@ func (i *insertStatementImpl) Sql() (sql string, args []interface{}, err error)
|
|||
}
|
||||
|
||||
func (i *insertStatementImpl) Query(db execution.DB, destination interface{}) error {
|
||||
return Query(i, db, destination)
|
||||
return query(i, db, destination)
|
||||
}
|
||||
|
||||
func (i *insertStatementImpl) QueryContext(db execution.DB, context context.Context, destination interface{}) error {
|
||||
return QueryContext(i, db, context, destination)
|
||||
return queryContext(i, db, context, destination)
|
||||
}
|
||||
|
||||
func (i *insertStatementImpl) Exec(db execution.DB) (res sql.Result, err error) {
|
||||
return Exec(i, db)
|
||||
return exec(i, db)
|
||||
}
|
||||
|
||||
func (i *insertStatementImpl) ExecContext(db execution.DB, context context.Context) (res sql.Result, err error) {
|
||||
return ExecContext(i, db, context)
|
||||
return execContext(i, db, context)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue