Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-974746 document that we currently do not support bind variables in multi-statement queries #819

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**

Expand Down Expand Up @@ -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.
Expand Down
Loading