mirror of
https://github.com/zhashkevych/go-sqlxmock.git
synced 2025-02-16 18:34:27 +02:00
13 lines
344 B
Go
13 lines
344 B
Go
package sqlmock
|
|
|
|
import "database/sql/driver"
|
|
|
|
// ValueConverterOption allows to create a sqlmock connection
|
|
// with a custom ValueConverter to support drivers with special data types.
|
|
func ValueConverterOption(converter driver.ValueConverter) func(*sqlmock) error {
|
|
return func(s *sqlmock) error {
|
|
s.converter = converter
|
|
return nil
|
|
}
|
|
}
|