Home > Contents > Index >
ICS.RenameList
Renames a list.
Syntax
public boolean RenameList(String list, String newname)Parameters
list
- The current name of the list.
newname
- The new name for the list.
Description
The
RenameList
method renames a list.Renaming to a list that already exists will remove the existing list. Cached resultsets corresponding to the list are flushed and set to null.
Returns
Returns
true
for success andfalse
for failure.Example
The following code renames an
IList
namedoldList
toLatestList
:String oldname = oldList.getName(); if ( ics.RenameList( oldname, "LatestList" ) { // name change successful }See Also
CopyList , FlushCatalog , GetList , RegisterList
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.