We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 149fca9 commit a19ebb0Copy full SHA for a19ebb0
Provider/src/FirebirdSql.Data.UnitTests/FbImplicitTransactionTests.cs
@@ -181,8 +181,7 @@ public void UpdatedBlobFieldTest()
181
{
182
FbCommand command = new FbCommand("update TEST set blob_field = @blob_field where int_field = @int_field", Connection);
183
command.Parameters.Add("@int_field", FbDbType.Integer).Value = 1;
184
- command.Parameters.Add("@blob_field", FbDbType.Binary).Value =
185
- Encoding.UTF8.GetBytes("Blob field update with implicit transaction");
+ command.Parameters.Add("@blob_field", FbDbType.Binary).Value = Encoding.UTF8.GetBytes("Blob field update with implicit transaction");
186
187
int i = command.ExecuteNonQuery();
188
0 commit comments