| SQLiteConnectionExtensionsBindParameters Method |
Bind parameters
Namespace:
SanteDB.DisconnectedClient.SQLite.Connection
Assembly:
SanteDB.DisconnectedClient.SQLite (in SanteDB.DisconnectedClient.SQLite.dll) Version: 2.2.1
Syntax public static void BindParameters(
this IDbStatement me,
params Object[] parameters
)
<ExtensionAttribute>
Public Shared Sub BindParameters (
me As IDbStatement,
ParamArray parameters As Object()
)
public:
[ExtensionAttribute]
static void BindParameters(
IDbStatement^ me,
... array<Object^>^ parameters
)
[<ExtensionAttribute>]
static member BindParameters :
me : IDbStatement *
parameters : Object[] -> unit
Parameters
- me
- Type: IDbStatement
[Missing <param name="me"/> documentation for "M:SanteDB.DisconnectedClient.SQLite.Connection.SQLiteConnectionExtensions.BindParameters(SQLite.Net.Interop.IDbStatement,System.Object[])"]
- parameters
- Type: SystemObject
[Missing <param name="parameters"/> documentation for "M:SanteDB.DisconnectedClient.SQLite.Connection.SQLiteConnectionExtensions.BindParameters(SQLite.Net.Interop.IDbStatement,System.Object[])"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IDbStatement. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also