Skip to content

Commit

Permalink
Do not throw if parameter index isn't found
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgi committed Nov 28, 2024
1 parent 465f11e commit c8e9944
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions DuckDB.NET.Data/Internal/PreparedStatement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,6 @@ private static void BindParameters(DuckDBPreparedStatement preparedStatement, Du
{
BindParameter(preparedStatement, index, param);
}
else
{
throw new DuckDBException($"Cannot get index for parameter {param.ParameterName}");
}
}
}
else
Expand Down

0 comments on commit c8e9944

Please sign in to comment.