Package system.data.oracleclient
Class OracleParameterCollection
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.data.common.DbParameterCollection
-
- system.data.oracleclient.OracleParameterCollection
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class OracleParameterCollection extends DbParameterCollection
The base .NET class managing System.Data.OracleClient.OracleParameterCollection, System.Data.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.OracleClient.OracleParameterCollection
Powered by JCOBridge: more info at https://www.jcobridge.com
- Version:
- 1.14.3.0
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static String
assemblyFullName
Fully assembly qualified name: System.Data.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static String
assemblyShortName
Assembly name: System.Data.OracleClientstatic String
className
Qualified class name: System.Data.OracleClient.OracleParameterCollectionstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description OracleParameterCollection()
OracleParameterCollection(Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description OracleParameter
Add(String parameterName, NetObject value)
OracleParameter
Add(String parameterName, OracleType dataType)
OracleParameter
Add(String parameterName, OracleType dataType, int size)
OracleParameter
Add(String parameterName, OracleType dataType, int size, String srcColumn)
int
Add(NetObject value)
OracleParameter
Add(OracleParameter value)
void
AddRange(Array values)
void
AddRange(OracleParameter[] values)
OracleParameter
AddWithValue(String parameterName, NetObject value)
static OracleParameterCollection
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoOracleParameterCollection
, a cast assert is made to check if types are compatible.void
Clear()
boolean
Contains(String parameterName)
boolean
Contains(NetObject value)
boolean
Contains(OracleParameter value)
void
CopyTo(Array array, int index)
void
CopyTo(OracleParameter[] array, int index)
String
getJCOAssemblyName()
Returns the reflected Assembly nameString
getJCOClassName()
Returns the reflected Class nameObject
getJCOInstance()
Returns the instantiated classString
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typeint
IndexOf(String parameterName)
int
IndexOf(NetObject value)
int
IndexOf(OracleParameter value)
void
Insert(int index, NetObject value)
void
Insert(int index, OracleParameter value)
void
Remove(NetObject value)
void
Remove(OracleParameter value)
void
RemoveAt(int index)
void
RemoveAt(String parameterName)
void
setJCOInstance(JCObject instance)
-
Methods inherited from class system.data.common.DbParameterCollection
getCount, getIsFixedSize, getIsReadOnly, getIsSynchronized, getSyncRoot
-
Methods inherited from class system.MarshalByRefObject
CreateObjRef, GetLifetimeService, InitializeLifetimeService
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toObjectFromArray, toObjectFromArray, toString, ToString, translateException
-
-
-
-
Field Detail
-
assemblyFullName
public static final String assemblyFullName
Fully assembly qualified name: System.Data.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final String assemblyShortName
Assembly name: System.Data.OracleClient- See Also:
- Constant Field Values
-
className
public static final String className
Qualified class name: System.Data.OracleClient.OracleParameterCollection- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classDbParameterCollection
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classDbParameterCollection
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classDbParameterCollection
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classDbParameterCollection
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classDbParameterCollection
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classDbParameterCollection
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static OracleParameterCollection cast(IJCOBridgeReflected from) throws Throwable
Try to cast theIJCOBridgeReflected
instance intoOracleParameterCollection
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
OracleParameterCollection
instance- Throws:
Throwable
- in case of error during cast operation
-
Contains
public boolean Contains(OracleParameter value) throws Throwable
- Throws:
Throwable
-
Contains
public boolean Contains(NetObject value) throws Throwable
- Overrides:
Contains
in classDbParameterCollection
- Throws:
Throwable
-
Contains
public boolean Contains(String parameterName) throws Throwable
- Overrides:
Contains
in classDbParameterCollection
- Throws:
Throwable
-
Add
public int Add(NetObject value) throws Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
-
IndexOf
public int IndexOf(OracleParameter value) throws Throwable
- Throws:
Throwable
-
IndexOf
public int IndexOf(NetObject value) throws Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
-
IndexOf
public int IndexOf(String parameterName) throws Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotSupportedException
-
Add
public OracleParameter Add(OracleParameter value) throws Throwable
- Throws:
Throwable
-
Add
public OracleParameter Add(String parameterName, OracleType dataType) throws Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
Add
public OracleParameter Add(String parameterName, OracleType dataType, int size) throws Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
Add
public OracleParameter Add(String parameterName, OracleType dataType, int size, String srcColumn) throws Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
Add
public OracleParameter Add(String parameterName, NetObject value) throws Throwable
- Throws:
Throwable
-
AddWithValue
public OracleParameter AddWithValue(String parameterName, NetObject value) throws Throwable
- Throws:
Throwable
-
AddRange
public void AddRange(Array values) throws Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
-
AddRange
public void AddRange(OracleParameter[] values) throws Throwable
- Throws:
Throwable
-
Clear
public void Clear() throws Throwable, InvalidOperationException
- Overrides:
Clear
in classDbParameterCollection
- Throws:
Throwable
InvalidOperationException
-
CopyTo
public void CopyTo(Array array, int index) throws Throwable
- Overrides:
CopyTo
in classDbParameterCollection
- Throws:
Throwable
-
CopyTo
public void CopyTo(OracleParameter[] array, int index) throws Throwable
- Throws:
Throwable
-
Insert
public void Insert(int index, OracleParameter value) throws Throwable
- Throws:
Throwable
-
Insert
public void Insert(int index, NetObject value) throws Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
-
Remove
public void Remove(OracleParameter value) throws Throwable
- Throws:
Throwable
-
Remove
public void Remove(NetObject value) throws Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
-
RemoveAt
public void RemoveAt(int index) throws Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
-
RemoveAt
public void RemoveAt(String parameterName) throws Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
-
-