2019-06-30 03:28:17 +00:00
|
|
|
// +build !go1.9
|
|
|
|
|
|
|
|
package mssql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql/driver"
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2019-07-26 04:10:20 +00:00
|
|
|
func (s *Stmt) makeParamExtra(val driver.Value) (param, error) {
|
|
|
|
return param{}, fmt.Errorf("mssql: unknown type for %T", val)
|
|
|
|
}
|
|
|
|
|
|
|
|
func scanIntoOut(name string, fromServer, scanInto interface{}) error {
|
|
|
|
return fmt.Errorf("mssql: unsupported OUTPUT type, use a newer Go version")
|
2019-06-30 03:28:17 +00:00
|
|
|
}
|