本站源代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
357B

  1. // +build !go1.9
  2. package mssql
  3. import (
  4. "database/sql/driver"
  5. "fmt"
  6. )
  7. func (s *Stmt) makeParamExtra(val driver.Value) (param, error) {
  8. return param{}, fmt.Errorf("mssql: unknown type for %T", val)
  9. }
  10. func scanIntoOut(name string, fromServer, scanInto interface{}) error {
  11. return fmt.Errorf("mssql: unsupported OUTPUT type, use a newer Go version")
  12. }
上海开阖软件有限公司 沪ICP备12045867号-1