You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using(varcmd=newMySqlCommand(Invariant($"insert into datatypes_blobs(`{column}`) values(?)"),connection,transaction)
526
+
using(varcmd=newMySqlCommand($"insert into datatypes_blobs(`{column}`) values(?)",connection,transaction)
528
527
{
529
528
Parameters={newMySqlParameter{Value=data}}
530
529
})
@@ -545,10 +544,10 @@ public async Task InsertLargeBlobAsync(string column, int size)
545
544
546
545
if(isSupported)
547
546
{
548
-
varqueryResult=(awaitconnection.QueryAsync<byte[]>(Invariant($"select `{column}` from datatypes_blobs where rowid = {lastInsertId}")).ConfigureAwait(false)).Single();
547
+
varqueryResult=(awaitconnection.QueryAsync<byte[]>($"select `{column}` from datatypes_blobs where rowid = {lastInsertId}").ConfigureAwait(false)).Single();
549
548
TestUtilities.AssertEqual(data,queryResult);
550
549
551
-
awaitconnection.ExecuteAsync(Invariant($"delete from datatypes_blobs where rowid = {lastInsertId}")).ConfigureAwait(false);
550
+
awaitconnection.ExecuteAsync($"delete from datatypes_blobs where rowid = {lastInsertId}").ConfigureAwait(false);
552
551
}
553
552
}
554
553
}
@@ -570,7 +569,7 @@ public void InsertLargeBlobSync(string column, int size)
0 commit comments