Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 595 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 595 Bytes

pvc-sql

PVC SQL Plugin to run SQL Scripts as a task

Examples:

pvc.Source("db/*.sql")
   .Pipe(new PvcSql(
      connectionString: "Data Source=.;Initial Catalog=PVCSandbox;Integrated Security=True",
			providerName: "MsSql"
   ));

####PvcSql Configuration Options The following options are available as named parameters of the constructor:

connectionString (Required) The connection string to your database.

providerName The database provider to use. Defaults to MsSql. Valid values are:

  • MsSql
  • MySql
  • PostgreSql