A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://learn.microsoft.com/en-us/dotnet/api/system.data.oracleclient.oracleparameter.parametername below:

OracleParameter.ParameterName Property (System.Data.OracleClient) | Microsoft Learn

OracleParameter.ParameterName Property Definition
public:
 property System::String ^ ParameterName { System::String ^ get(); void set(System::String ^ value); };
public:
 virtual property System::String ^ ParameterName { System::String ^ get(); void set(System::String ^ value); };
public string ParameterName { get; set; }
public override string ParameterName { get; set; }
member this.ParameterName : string with get, set
Public Property ParameterName As String
Public Overrides Property ParameterName As String
Property Value

The name of the OracleParameter. The default is an empty string.

Implements Examples

The following example creates a OracleParameter and sets some of its properties.

Public Sub CreateOracleDbParameter()
   Dim parameter As New OracleParameter()
   parameter.ParameterName = "pDName"
   parameter.DbType = DbType.String
   parameter.Value = "ENGINEERING"
   parameter.SourceColumn = "DName"
End Sub
public void CreateOracleDbParameter()
{
   OracleParameter parameter = new OracleParameter();
   parameter.ParameterName = "pDName";
   parameter.DbType = DbType.String;
   parameter.Value = "ENGINEERING";
   parameter.SourceColumn = "DName";
}
Remarks

The .NET Framework Data Provider for Oracle does not support positional parameters that are marked with a question mark (?).

Collaborate with us on GitHub

The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide. In this article

Was this page helpful?


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4