DataConnectors icon indicating copy to clipboard operation
DataConnectors copied to clipboard

SupportsStringLiterals breaking Snowflake ODBC

Open alvestobias opened this issue 1 year ago • 0 comments

When I add the property SupportsStringLiterals to the list SqlCapabilities it returns me an error.

SqlCapabilities = [
    LimitClauseKind = LimitClauseKind.LimitOffset,
                PrepareStatements = true,
               
                Sql92Conformance = 8,
                SupportsNumericLiterals = true,
                //SupportsStringLiterals = true, -> error coming from here
                SupportsOdbcDateLiterals = true,
                SupportsOdbcTimeLiterals = true,
                SupportsOdbcTimestampLiterals = true
                ]]

The code commented works fine and without the comment shows this:

Expression.Error: The provided options for SqlCapabilities are not valid. Details: [List]

alvestobias avatar Jul 06 '22 12:07 alvestobias