Represents a SQL statement or stored procedure to execute against PostgreSQL.
The following example uses the
ExecuteReader method of
PgSqlCommand, along with
PgSqlDataReader and
PgSqlConnection, to select rows from a table.
public void ReadMyData(string myConnString)
{
string mySelectQuery = "SELECT DeptNo, DName FROM Test.Dept";
PgSqlConnection pgConnection = new PgSqlConnection(myConnString);
PgSqlCommand pgCommand = new PgSqlCommand(mySelectQuery,pgConnection);
pgConnection.Open();
PgSqlDataReader pgReader = pgCommand.ExecuteReader();
try
{
while (pgReader.Read())
{
Console.WriteLine(pgReader.GetInt32(0).ToString() + ", " + pgReader.GetString(1));
}
}
finally
{
// always call Close when done reading.
pgReader.Close();
// always call Close when done reading.
pgConnection.Close();
}
}
Public Sub ReadMyData(myConnString As String)
Dim mySelectQuery As String = "SELECT DeptNo, DName FROM Test.Dept"
Dim pgConnection As New PgSqlConnection(myConnString)
Dim pgCommand As New PgSqlCommand(mySelectQuery, pgConnection)
pgConnection.Open()
Dim pgReader As PgSqlDataReader = pgCommand.ExecuteReader()
Try
While pgReader.Read()
Console.WriteLine(pgReader.GetInt32(0).ToString() + ", " _
+ pgReader.GetString(1))
End While
Finally
' always call Close when done reading.
pgReader.Close()
' always call Close when done with connection.
pgConnection.Close()
End Try
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