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
thrownewSQLiteException(SQLiteRaw.Result.Error,"Cannot create commands from unopened database");
352
-
}
353
-
354
-
SQLiteCommandcommand=NewCommand();
355
-
command.CommandText=commandText;
333
+
SQLiteCommandcommand=new(this){
334
+
CommandText=commandText,
335
+
};
356
336
foreach(object?parameterinparameters){
357
337
command.Bind(parameter);
358
338
}
359
339
returncommand;
360
340
}
361
-
362
341
/// <summary>
363
-
/// Creates a new SQLiteCommand given the command text with named arguments. Place a "[@:$]VVV"
364
-
/// in the command text for each of the arguments. VVV represents an alphanumeric identifier.
365
-
/// For example, @name :name and $name can all be used in the query.
342
+
/// Creates a new SQLiteCommand given the command text with named parameters. Place <c>@</c> or <c>:</c> or <c>$</c> followed by an alphanumeric identifier for each argument.<br/>
343
+
/// For example, <c>@name</c>, <c>:name</c> and <c>$name</c> can all be used.
366
344
/// </summary>
367
-
/// <param name="commandText">
368
-
/// The fully escaped SQL.
369
-
/// </param>
370
-
/// <param name="parameters">
371
-
/// Arguments to substitute for the occurences of "[@:$]VVV" in the command text.
0 commit comments