2019-06-30 08:58:17 +05:30
|
|
|
// +build !go1.9
|
|
|
|
|
|
|
|
package mssql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql/driver"
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2019-07-26 09:40:20 +05:30
|
|
|
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 08:58:17 +05:30
|
|
|
}
|