1
0
mirror of https://github.com/zhashkevych/go-sqlxmock.git synced 2025-06-12 21:47:29 +02:00

move options to a separate file

This commit is contained in:
Jan Was
2018-09-14 11:03:24 +02:00
parent 3cbf32d5e7
commit 168056e96a
3 changed files with 20 additions and 14 deletions

12
options.go Normal file
View File

@ -0,0 +1,12 @@
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
}
}