SQLiteConnectionCreateCommand Method |
Creates a new SQLiteCommand given the command text with arguments. Place a '?'
in the command text for each of the arguments.
Namespace:
Unvired.Kernel.SQLite
Assembly:
Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic SQLiteCommand CreateCommand(
string cmdText,
params Object[] ps
)
Public Function CreateCommand (
cmdText As String,
ParamArray ps As Object()
) As SQLiteCommand
public:
SQLiteCommand^ CreateCommand(
String^ cmdText,
... array<Object^>^ ps
)
member CreateCommand :
cmdText : string *
ps : Object[] -> SQLiteCommand
Parameters
- cmdText
- Type: SystemString
The fully escaped SQL.
- ps
- Type: SystemObject
Return Value
Type:
SQLiteCommand
A
SQLiteCommand
See Also