Represents an open connection to Oracle.
The following example creates a
OracleCommand and a
OracleConnection. The
OracleConnection is opened and set as the
Connection property. The example then calls
ExecuteNonQuery method, and closes the connection. To accomplish this, the
ExecuteNonQuery is passed a connection string and a query string that is SQL INSERT statement.
|
|---|
public void InsertRow(string myConnectionString)
{
// If the connection string is empty, use default.
if(myConnectionString == "")
{
myConnectionString =
"User Id=Scott;Password=tiger;Data Source=Ora;";
}
OracleConnection myConn = new OracleConnection(myConnectionString);
string myInsertQuery = "INSERT INTO DEPT VALUES (50,'Development','Philadelphia')";
OracleCommand myCommand = new OracleCommand(myInsertQuery);
myCommand.Connection = myConn;
myConn.Open();
try
{
myCommand.ExecuteNonQuery();
}
finally
{
myConn.Close();
}
} |
|
|---|
Public Sub InsertRow(myConnectionString As String)
' If the connection string is empty, use default.
If myConnectionString = "" Then
myConnectionString = _
"User Id=Scott;Password=tiger;Data Source=Ora;"
End If
Dim myConn As New OracleConnection(myConnectionString)
Dim myInsertQuery As String = "INSERT INTO DEPT VALUES (50,'Development','Philadelphia')"
Dim myCommand As New OracleCommand(myInsertQuery)
myCommand.Connection = myConn
myConn.Open()
Try
myCommand.ExecuteNonQuery()
Finally
myConn.Close()
End Try
End Sub |