sq/libsq/driver/scratch.go
Neil O'Toole 1ceb50e795
SQL batch insert (#58)
* initial refactoring for the numRows param

* work on driver.NewBatchInsert

* work on NewBatchInsert

* batch insert seems to work

* switched testh.Insert to use BatchInsert

* doc cleanup

* batch insert for dbwriter and csv

* removed unneeded NumRows from driver.StmtExecer

* minor tidyup
2020-08-12 12:24:01 -06:00

59 lines
1.6 KiB
Go

package driver
import (
"context"
"database/sql"
"github.com/neilotoole/lg"
"github.com/neilotoole/sq/libsq/cleanup"
"github.com/neilotoole/sq/libsq/source"
)
// ScratchSrcFunc is a function that returns a scratch source.
// The caller is responsible for invoking cleanFn.
type ScratchSrcFunc func(log lg.Log, name string) (src *source.Source, cleanFn func() error, err error)
// scratchDatabase implements driver.Database.
// It exists as a separate type mostly to support cleanup of the
// created scratch database during Close. Possibly this type can
// be ditched entirely.
type scratchDatabase struct {
log lg.Log
impl Database
cleanup *cleanup.Cleanup
}
// DB implements driver.Database.
func (d *scratchDatabase) DB() *sql.DB {
return d.impl.DB()
}
// TableMetadata implements driver.Database.
func (d *scratchDatabase) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) {
return d.impl.TableMetadata(ctx, tblName)
}
// SQLDriver implements driver.Database.
func (d *scratchDatabase) SQLDriver() SQLDriver {
return d.impl.SQLDriver()
}
// Source implements driver.Database.
func (d *scratchDatabase) Source() *source.Source {
return d.impl.Source()
}
// SourceMetadata implements driver.Database.
func (d *scratchDatabase) SourceMetadata(ctx context.Context) (*source.Metadata, error) {
return d.impl.SourceMetadata(ctx)
}
// Close implements driver.Database.
func (d *scratchDatabase) Close() error {
d.log.Debugf("Close scratch database: %s", d.impl.Source())
// No need to explicitly invoke c.impl.Close because it
// has already been added to c.cleanup.
return d.cleanup.Run()
}