SqliteParameter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SqliteParameter() |
Initializes a new instance of the SqliteParameter class. |
SqliteParameter(String, SqliteType) |
Initializes a new instance of the SqliteParameter class. |
SqliteParameter(String, Object) |
Initializes a new instance of the SqliteParameter class. |
SqliteParameter(String, SqliteType, Int32) |
Initializes a new instance of the SqliteParameter class. |
SqliteParameter(String, SqliteType, Int32, String) |
Initializes a new instance of the SqliteParameter class. |
SqliteParameter()
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
Initializes a new instance of the SqliteParameter class.
public SqliteParameter ();
Public Sub New ()
Applies to
SqliteParameter(String, SqliteType)
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
Initializes a new instance of the SqliteParameter class.
public SqliteParameter (string name, Microsoft.Data.Sqlite.SqliteType type);
public SqliteParameter (string? name, Microsoft.Data.Sqlite.SqliteType type);
new Microsoft.Data.Sqlite.SqliteParameter : string * Microsoft.Data.Sqlite.SqliteType -> Microsoft.Data.Sqlite.SqliteParameter
Public Sub New (name As String, type As SqliteType)
Parameters
- name
- String
The name of the parameter.
- type
- SqliteType
The type of the parameter.
Applies to
SqliteParameter(String, Object)
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
Initializes a new instance of the SqliteParameter class.
public SqliteParameter (string name, object value);
public SqliteParameter (string? name, object? value);
new Microsoft.Data.Sqlite.SqliteParameter : string * obj -> Microsoft.Data.Sqlite.SqliteParameter
Public Sub New (name As String, value As Object)
Parameters
- name
- String
The name of the parameter.
- value
- Object
The value of the parameter. Can be null.
Applies to
SqliteParameter(String, SqliteType, Int32)
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
Initializes a new instance of the SqliteParameter class.
public SqliteParameter (string name, Microsoft.Data.Sqlite.SqliteType type, int size);
public SqliteParameter (string? name, Microsoft.Data.Sqlite.SqliteType type, int size);
new Microsoft.Data.Sqlite.SqliteParameter : string * Microsoft.Data.Sqlite.SqliteType * int -> Microsoft.Data.Sqlite.SqliteParameter
Public Sub New (name As String, type As SqliteType, size As Integer)
Parameters
- name
- String
The name of the parameter.
- type
- SqliteType
The type of the parameter.
- size
- Int32
The maximum size, in bytes, of the parameter.
Applies to
SqliteParameter(String, SqliteType, Int32, String)
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
- Source:
- SqliteParameter.cs
Initializes a new instance of the SqliteParameter class.
public SqliteParameter (string name, Microsoft.Data.Sqlite.SqliteType type, int size, string sourceColumn);
public SqliteParameter (string? name, Microsoft.Data.Sqlite.SqliteType type, int size, string? sourceColumn);
new Microsoft.Data.Sqlite.SqliteParameter : string * Microsoft.Data.Sqlite.SqliteType * int * string -> Microsoft.Data.Sqlite.SqliteParameter
Public Sub New (name As String, type As SqliteType, size As Integer, sourceColumn As String)
Parameters
- name
- String
The name of the parameter.
- type
- SqliteType
The type of the parameter.
- size
- Int32
The maximum size, in bytes, of the parameter.
- sourceColumn
- String
The source column used for loading the value. Can be null.