Class DropIndex
- java.lang.Object
-
- com.ibm.fhir.database.utils.common.DropIndex
-
- All Implemented Interfaces:
IDatabaseStatement
public class DropIndex extends Object implements IDatabaseStatement
Drop an index from a given schema by name
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIndexName()
String
getSchemaName()
void
run(IDatabaseTranslator translator, Connection c)
Execute the statement using the connection.
-
-
-
Method Detail
-
run
public void run(IDatabaseTranslator translator, Connection c)
Description copied from interface:IDatabaseStatement
Execute the statement using the connection.- Specified by:
run
in interfaceIDatabaseStatement
- Parameters:
translator
- to translate any exceptions
-
getSchemaName
public String getSchemaName()
- Returns:
- the schemaName
-
getIndexName
public String getIndexName()
- Returns:
- the indexNames
-
-