IArray.Free Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This method frees the Array
object and releases the resources that
it holds.
[Android.Runtime.Register("free", "()V", "GetFreeHandler:Java.Sql.IArrayInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void Free ();
[<Android.Runtime.Register("free", "()V", "GetFreeHandler:Java.Sql.IArrayInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Free : unit -> unit
- Attributes
Exceptions
Remarks
This method frees the Array
object and releases the resources that it holds. The object is invalid once the free
method is called.
After free
has been called, any attempt to invoke a method other than free
will result in a SQLException
being thrown. If free
is called multiple times, the subsequent calls to free
are treated as a no-op.
Added in 1.6.
Java documentation for java.sql.Array.free()
.
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.