ICallableStatement.GetURL Method

Definition

Overloads

GetURL(Int32)

Retrieves the value of the designated JDBC DATALINK parameter as a java.net.___URL object.

GetURL(String)

Retrieves the value of a JDBC DATALINK parameter as a java.net.___URL object.

GetURL(Int32)

Retrieves the value of the designated JDBC DATALINK parameter as a java.net.___URL object.

[Android.Runtime.Register("getURL", "(I)Ljava/net/URL;", "GetGetURL_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Net.___URL? GetURL(int parameterIndex);
[<Android.Runtime.Register("getURL", "(I)Ljava/net/URL;", "GetGetURL_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetURL : int -> Java.Net.___URL

Parameters

parameterIndex
Int32

the first parameter is 1, the second is 2,...

Returns

URL

a java.net.___URL object that represents the JDBC DATALINK value used as the designated parameter

Attributes

Exceptions

if a database error occurs.

Remarks

Retrieves the value of the designated JDBC DATALINK parameter as a java.net.___URL object.

Added in 1.4.

Java documentation for java.sql.CallableStatement.getURL(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

See also

Applies to

GetURL(String)

Retrieves the value of a JDBC DATALINK parameter as a java.net.___URL object.

[Android.Runtime.Register("getURL", "(Ljava/lang/String;)Ljava/net/URL;", "GetGetURL_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Net.___URL? GetURL(string? parameterName);
[<Android.Runtime.Register("getURL", "(Ljava/lang/String;)Ljava/net/URL;", "GetGetURL_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetURL : string -> Java.Net.___URL

Parameters

parameterName
String

the name of the parameter

Returns

URL

the parameter value as a java.net.___URL object in the Java programming language. If the value was SQL NULL, the value null is returned.

Attributes

Exceptions

if a database error occurs.

Remarks

Retrieves the value of a JDBC DATALINK parameter as a java.net.___URL object.

Added in 1.4.

Java documentation for java.sql.CallableStatement.getURL(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

See also

Applies to