Uses of Class
com.googlecode.jdbw.metadata.Index

Packages that use Index
com.googlecode.jdbw   
com.googlecode.jdbw.metadata   
com.googlecode.jdbw.server   
com.googlecode.jdbw.server.h2   
com.googlecode.jdbw.server.sybase   
 

Uses of Index in com.googlecode.jdbw
 

Method parameters in com.googlecode.jdbw with type arguments of type Index
 String[] SQLDialect.getCreateTableStatement(String schemaName, String name, List<Column> columns, List<Index> indexes)
           
 

Uses of Index in com.googlecode.jdbw.metadata
 

Methods in com.googlecode.jdbw.metadata that return Index
 Index Table.getPrimaryKey()
           
 Index Table.getUniqueKey()
          This method will return you the primary key if there is one, otherwise scan through the list of indexes and return the first available unique index.
 

Methods in com.googlecode.jdbw.metadata that return types with arguments of type Index
 List<Index> Table.getAllIndexes()
           
protected  List<Index> MetaDataResolver.getIndexes(String catalogName, String schemaName, Table table)
           
 Map<String,Index> Table.getIndexMap()
           
 

Methods in com.googlecode.jdbw.metadata with parameters of type Index
 int Index.compareTo(Index o)
           
 

Method parameters in com.googlecode.jdbw.metadata with type arguments of type Index
protected  void MetaDataResolver.extractIndexDataFromMetaResult(ResultSet resultSet, Map<String,Index> indexMap, Table table)
           
 

Uses of Index in com.googlecode.jdbw.server
 

Method parameters in com.googlecode.jdbw.server with type arguments of type Index
 String[] DefaultSQLDialect.getCreateTableStatement(String schemaName, String name, List<Column> columns, List<Index> indexes)
           
 

Uses of Index in com.googlecode.jdbw.server.h2
 

Method parameters in com.googlecode.jdbw.server.h2 with type arguments of type Index
 String[] H2SQLDialect.getCreateTableStatement(String schemaName, String name, List<Column> columns, List<Index> indexes)
           
 

Uses of Index in com.googlecode.jdbw.server.sybase
 

Method parameters in com.googlecode.jdbw.server.sybase with type arguments of type Index
 String[] SybaseASESQLDialect.getCreateTableStatement(String schemaName, String name, List<Column> columns, List<Index> indexes)
           
 



Copyright © 2012. All Rights Reserved.