Home > Contents > Index >
Expanded TOC | Accordion TOC | Annotated TOC | Index
ICS.IsTracked
Determines whether Sites is revision tracking the specified table.
Syntax
public boolean IsTracked(String catalog)Parameters
catalog
- The name of the table.
Returns
Returns
true
on success,false
on failure.Example
The following code determines whether a table named MovieReviews is being revision tracked:
boolean tracked = ics.IsTracked("MovieReviews"); if (!tracked) { //table is not tracked }
Home > Contents > Index > Oracle JAVA Reference
Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.