Creates and returns a
PgSqlCommand object associated with the
PgSqlConnection.
Creates and returns a
PgSqlCommand object associated with the
PgSqlConnection.
Syntax
Remarks
Example
In this sample
PgSqlCommand object is created. It is automatically associated with
PgSqlConnection that created it.
C#csharp | Copy Code |
---|
public void CreatePgSqlCommand(string myConnString)
{
PgSqlConnection pgConnection = new PgSqlConnection(myConnString);
PgSqlCommand pgCommand = pgConnection.CreateCommand();
pgCommand.CommandText = "INSERT INTO DEPT VALUES (50,'Development','Philadelphia')";
pgConnection.Open();
try
{
pgCommand.ExecuteNonQuery();
}
finally
{
pgConnection.Close();
}
} |
C#Visual Basic | Copy Code |
---|
Public Sub CreatePgSqlCommand(ByVal myConnString As String)
Dim pgConnection As New PgSqlConnection(myConnString)
Dim pgCommand As PgSqlCommand = pgConnection.CreateCommand()
pgCommand.CommandText = "INSERT INTO DEPT VALUES (50,'Development','Philadelphia')"
pgConnection.Open()
Try
pgCommand.ExecuteNonQuery()
Finally
pgConnection.Close()
End Try
End Sub |
Requirements
Platforms:Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7, Windows 8, Windows 10, Windows Server 2012 family.
See Also