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
connection.Execute(@"drop table if exists prepared_command_test; create table prepared_command_test(value int not null); insert into prepared_command_test(value) values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);");
249
+
cmd.Prepare();
249
250
250
-
using(varcmd=connection.CreateCommand())
251
+
using(varreader=cmd.ExecuteReader())
251
252
{
252
-
varsql=newStringBuilder("select value from prepared_command_test where value in (");
connection.Execute(@"drop table if exists prepared_command_test; create table prepared_command_test(value int not null); insert into prepared_command_test(value) values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);");
0 commit comments