PgSqlCommand Constructor(String,PgSqlConnection)
Initializes a new instance of the
PgSqlCommand class with the text of the query and a %% object.
The following example creates a
PgSqlCommand and sets some of its properties.
public void CreateCommand()
{
PgSqlConnection pgConnection = new PgSqlConnection(
"host=server;database=test;user id=postgres;");
string mySelectQuery = "SELECT * FROM Test.Dept";
PgSqlCommand pgCommand = new PgSqlCommand(mySelectQuery, pgConnection);
pgCommand.FetchSize = 100;
}
Public Sub CreateCommand()
Dim pgConnection As New PgSqlConnection( _
"host=server;database=test;user id=postgres;")
Dim mySelectQuery As String = _
"SELECT * FROM Test.Dept"
Dim pgCommand As New PgSqlCommand(mySelectQuery, pgConnection)
pgCommand.FetchSize = 100
End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2