| SQLiteConnectionExtensionsPrepareInsert Method (SQLiteConnection, Type) |
Prepare an insert statement
Namespace:
SanteDB.DisconnectedClient.SQLite.Connection
Assembly:
SanteDB.DisconnectedClient.SQLite (in SanteDB.DisconnectedClient.SQLite.dll) Version: 2.2.1
Syntax public static IDbStatement PrepareInsert(
this SQLiteConnection me,
Type objectType
)
<ExtensionAttribute>
Public Shared Function PrepareInsert (
me As SQLiteConnection,
objectType As Type
) As IDbStatement
public:
[ExtensionAttribute]
static IDbStatement^ PrepareInsert(
SQLiteConnection^ me,
Type^ objectType
)
[<ExtensionAttribute>]
static member PrepareInsert :
me : SQLiteConnection *
objectType : Type -> IDbStatement
Parameters
- me
- Type: SQLiteConnection
[Missing <param name="me"/> documentation for "M:SanteDB.DisconnectedClient.SQLite.Connection.SQLiteConnectionExtensions.PrepareInsert(SQLite.Net.SQLiteConnection,System.Type)"]
- objectType
- Type: SystemType
[Missing <param name="objectType"/> documentation for "M:SanteDB.DisconnectedClient.SQLite.Connection.SQLiteConnectionExtensions.PrepareInsert(SQLite.Net.SQLiteConnection,System.Type)"]
Return Value
Type:
IDbStatement[Missing <returns> documentation for "M:SanteDB.DisconnectedClient.SQLite.Connection.SQLiteConnectionExtensions.PrepareInsert(SQLite.Net.SQLiteConnection,System.Type)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
SQLiteConnection. 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