Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 1.2 KB

adodotnet-datasource.md

File metadata and controls

21 lines (16 loc) · 1.2 KB
title ms.date ms.service ms.reviewer ms.topic author ms.author
AdoDotNet.DataSource | Microsoft Docs
10/17/2019
powerquery
gepopell
reference
dougklopfenstein
bezhan

AdoDotNet.DataSource

Syntax

AdoDotNet.DataSource(providerName as text, connectionString as any, optional options as nullable record) as table

About

Returns the schema collection for the ADO.NET data source with provider name providerName and connection string connectionString. connectionString can be text or a record of property value pairs. Property values can either be text or number. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:

  • CommandTimeout : A duration which controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.
  • SqlCompatibleWindowsAuth : A logical (true/false) that determines whether to produce SQL Server-compatible connection string options for Windows authentication. The default value is true.
  • TypeMap