From 60baeff3ed3a33c5f3249d1d3c14f2ff466c2e0e Mon Sep 17 00:00:00 2001 From: David Szmolka <69192509+sfc-gh-dszmolka@users.noreply.github.com> Date: Wed, 22 Nov 2023 09:58:18 +0100 Subject: [PATCH] document that we currently do not support bind variables in multi-statement queries, we're getting issues related to this --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 13f2ca41d..ec49ee332 100644 --- a/README.md +++ b/README.md @@ -488,6 +488,8 @@ With version 2.0.18 and later of the .NET connector, you can send a batch of SQL statements, separated by semicolons, to be executed in a single request. +**Note**: Snowflake does not currently support variable binding in multi-statement SQL requests. + --- **Note** @@ -555,6 +557,8 @@ using (DbCommand cmd = conn.CreateCommand()) Bind Parameter -------------- +**Note**: Snowflake does not currently support variable binding in multi-statement SQL requests. + This example shows how bound parameters are converted from C# data types to Snowflake data types. For example, if the data type of the Snowflake column is INTEGER, then you can bind C# data types Int32 or Int16.