Home > Contents > Index >
ICS.CopyList
Copies a list object.
Syntax
public boolean CopyList(String list, String newname)Parameters
list
- The name of the list to copy.
newname
- The name of the list to be created.
Description
The
CopyList
method copies a list object.Copying to a list that already exists will destroy the existing list. Cached resultsets corresponding to the list, however, are not destroyed, and are accessible to other threads. To delete cached resultsets, use
FlushCatalog()
.Returns
Returns
true
for success andfalse
for failure.Example
The following code copies the existing list
oldlist
to a new list namedaNewList:
String oldListName = oldlist.getName(); if ( !ics.CopyList( oldListName, "aNewList" ) ) { // error in copying list }See Also
GetList (Variant 2) , FlushCatalog , RegisterList , RenameList
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.