MS SQL Server Table
Parameter | Value |
connectionString | |
object | the name of the object without the schema, e.g.employees |
Before 4.0
connectionString
: the encrypted connection string. See https://www.connectionstrings.com/sqlconnection/ for a sample.schema
: sql schema, if any. e.g. dbotable
: the name of the table without the schema, e.g.employees
CLI 4.0+
connectionString
: the encrypted connection string. See https://www.connectionstrings.com/sqlconnection/ for a sample.table
: the name of the table including the schema, e.g. dbo.employees
Last updated