Uses of Class
mil.nga.geopackage.db.GeoPackageCoreConnection
-
-
Uses of GeoPackageCoreConnection in mil.nga.geopackage
Methods in mil.nga.geopackage that return GeoPackageCoreConnection Modifier and Type Method Description GeoPackageCoreConnection
GeoPackageCore. getDatabase()
Get the SQLite databaseGeoPackageCoreConnection
GeoPackageCoreImpl. getDatabase()
Get the SQLite databaseConstructors in mil.nga.geopackage with parameters of type GeoPackageCoreConnection Constructor Description GeoPackageCoreImpl(String name, String path, GeoPackageCoreConnection database)
ConstructorGeoPackageCoreImpl(String name, String path, GeoPackageCoreConnection database, boolean writable)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.contents
Methods in mil.nga.geopackage.contents with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ContentsDao
ContentsDao. create(GeoPackageCoreConnection db)
Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.db
Fields in mil.nga.geopackage.db declared as GeoPackageCoreConnection Modifier and Type Field Description protected GeoPackageCoreConnection
GeoPackageDao. db
Database connectionMethods in mil.nga.geopackage.db that return GeoPackageCoreConnection Modifier and Type Method Description GeoPackageCoreConnection
GeoPackageDao. getDatabase()
Get the databaseMethods in mil.nga.geopackage.db with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static void
AlterTable. addColumn(GeoPackageCoreConnection db, String tableName, String columnName, String columnDef)
Add a columnstatic void
CoreSQLUtils. addColumn(GeoPackageCoreConnection db, String tableName, UserColumn column)
Create SQL for adding a columnstatic <T extends UserColumn>
voidAlterTable. alterColumn(GeoPackageCoreConnection db, String tableName, UserCustomColumn column)
Alter a columnstatic <T extends UserColumn>
voidAlterTable. alterColumn(GeoPackageCoreConnection db, UserTable<T> table, T column)
Alter a columnstatic <T extends UserColumn>
voidAlterTable. alterColumns(GeoPackageCoreConnection db, String tableName, Collection<UserCustomColumn> columns)
Alter columnsstatic <T extends UserColumn>
voidAlterTable. alterColumns(GeoPackageCoreConnection db, UserTable<T> table, Collection<T> columns)
Alter columnsstatic void
AlterTable. alterTable(GeoPackageCoreConnection db, String sql, TableMapping tableMapping)
Alter a table with a new table SQL creation statement and table mapping.static void
AlterTable. alterTable(GeoPackageCoreConnection db, UserTable<? extends UserColumn> newTable)
Alter a table with a new table schema assuming a default table mapping.static void
AlterTable. alterTable(GeoPackageCoreConnection db, UserTable<? extends UserColumn> newTable, TableMapping tableMapping)
Alter a table with a new table schema and table mapping.static void
AlterTable. copyTable(GeoPackageCoreConnection db, String tableName, String newTableName)
Copy the table and row contentstatic void
AlterTable. copyTable(GeoPackageCoreConnection db, String tableName, String newTableName, boolean transferContent)
Copy the tablestatic void
AlterTable. copyTable(GeoPackageCoreConnection db, UserTable<? extends UserColumn> table, String newTableName)
Copy the table and row contentstatic void
AlterTable. copyTable(GeoPackageCoreConnection db, UserTable<? extends UserColumn> table, String newTableName, boolean transferContent)
Copy the tablestatic <D extends GeoPackageDao<O,?>,O>
DGeoPackageDao. createDao(GeoPackageCoreConnection db, DatabaseTableConfig<O> tableConfig)
Create a GeoPackage DAOstatic <D extends GeoPackageDao<O,?>,O>
DGeoPackageDao. createDao(GeoPackageCoreConnection db, Class<O> clazz)
Create a GeoPackage DAOstatic String
CoreSQLUtils. createName(GeoPackageCoreConnection db, String name, String replace, String replacement)
Create a new name by replacing a case insensitive value with a new value.static void
AlterTable. dropColumn(GeoPackageCoreConnection db, String tableName, String columnName)
Drop a columnstatic void
AlterTable. dropColumn(GeoPackageCoreConnection db, UserTable<? extends UserColumn> table, String columnName)
Drop a columnstatic void
AlterTable. dropColumns(GeoPackageCoreConnection db, String tableName, Collection<String> columnNames)
Drop columnsstatic void
AlterTable. dropColumns(GeoPackageCoreConnection db, UserTable<? extends UserColumn> table, Collection<String> columnNames)
Drop columnsstatic void
CoreSQLUtils. dropTable(GeoPackageCoreConnection db, String tableName)
Drop the table if it existsstatic void
CoreSQLUtils. dropView(GeoPackageCoreConnection db, String viewName)
Drop the view if it existsstatic List<List<Object>>
CoreSQLUtils. foreignKeyCheck(GeoPackageCoreConnection db)
Perform a foreign key checkstatic List<List<Object>>
CoreSQLUtils. foreignKeyCheck(GeoPackageCoreConnection db, String tableName)
Perform a foreign key checkstatic boolean
CoreSQLUtils. foreignKeys(GeoPackageCoreConnection db)
Query for the foreign keys valuestatic boolean
CoreSQLUtils. foreignKeys(GeoPackageCoreConnection db, boolean on)
Change the foreign keys statestatic String
CoreSQLUtils. modifySQL(GeoPackageCoreConnection db, String name, String sql, TableMapping tableMapping)
Modify the SQL with a name change and the table mapping modificationsstatic void
AlterTable. renameColumn(GeoPackageCoreConnection db, String tableName, String columnName, String newColumnName)
Rename a columnstatic void
AlterTable. renameTable(GeoPackageCoreConnection db, String tableName, String newTableName)
Rename a tablevoid
GeoPackageDao. setDatabase(GeoPackageCoreConnection db)
Set the databasestatic String
CoreSQLUtils. tempTableName(GeoPackageCoreConnection db, String prefix, String baseName)
Get an available temporary table name.static void
CoreSQLUtils. transferTableContent(GeoPackageCoreConnection db, String tableName, String columnName, Object newColumnValue, Object currentColumnValue)
Transfer table content to itself with new rows containing a new column value.static void
CoreSQLUtils. transferTableContent(GeoPackageCoreConnection db, String tableName, String columnName, Object newColumnValue, Object currentColumnValue, String idColumnName)
Transfer table content to itself with new rows containing a new column value.static void
CoreSQLUtils. transferTableContent(GeoPackageCoreConnection db, TableMapping tableMapping)
Transfer table content from one table to anotherstatic void
CoreSQLUtils. vacuum(GeoPackageCoreConnection db)
Rebuild the GeoPackage, repacking it into a minimal amount of disk spaceConstructors in mil.nga.geopackage.db with parameters of type GeoPackageCoreConnection Constructor Description GeoPackageCoreConnection(GeoPackageCoreConnection connection)
Copy ConstructorGeoPackageTableCreator(GeoPackageCoreConnection db)
ConstructorTableMapping(GeoPackageCoreConnection db, String tableName)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.db.master
Methods in mil.nga.geopackage.db.master with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static int
SQLiteMaster. count(GeoPackageCoreConnection db)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, String tableName)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types, String tableName)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterQuery query)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType type)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType[] types)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType[] types, String tableName)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType[] types, SQLiteMasterQuery query)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType type, String tableName)
Count the sqlite_master tablestatic int
SQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType type, SQLiteMasterQuery query)
Count the sqlite_master tablestatic int
SQLiteMaster. countByType(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types)
Count the sqlite_master tablestatic int
SQLiteMaster. countByType(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types, String tableName)
Count the sqlite_master tablestatic int
SQLiteMaster. countByType(GeoPackageCoreConnection db, SQLiteMasterType type)
Count the sqlite_master tablestatic int
SQLiteMaster. countByType(GeoPackageCoreConnection db, SQLiteMasterType type, String tableName)
Count the sqlite_master tablestatic int
SQLiteMaster. countViewsOnTable(GeoPackageCoreConnection db, String tableName)
Count the sqlite_master views on the tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, String tableName)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, Collection<SQLiteMasterType> types)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, Collection<SQLiteMasterType> types, String tableName)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, SQLiteMasterType type)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, SQLiteMasterType type, String tableName)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterQuery query)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType type)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType[] types)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType[] types, String tableName)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType[] types, SQLiteMasterQuery query)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType type, String tableName)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType type, SQLiteMasterQuery query)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterQuery query)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterType type, SQLiteMasterQuery query)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. queryByType(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. queryByType(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types, String tableName)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. queryByType(GeoPackageCoreConnection db, SQLiteMasterType type)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. queryByType(GeoPackageCoreConnection db, SQLiteMasterType type, String tableName)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. queryForColumns(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns)
Query the sqlite_master tablestatic SQLiteMaster
SQLiteMaster. queryForColumns(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, String tableName)
Query the sqlite_master tablestatic TableConstraints
SQLiteMaster. queryForConstraints(GeoPackageCoreConnection db, String tableName)
Query for the table constraintsstatic SQLiteMaster
SQLiteMaster. queryViewsOnTable(GeoPackageCoreConnection db, String tableName)
Query the sqlite_master views on the tablestatic SQLiteMaster
SQLiteMaster. queryViewsOnTable(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, String tableName)
Query the sqlite_master views on the table -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.db.table
Methods in mil.nga.geopackage.db.table with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static TableInfo
TableInfo. info(GeoPackageCoreConnection db, String tableName)
Query for the table_info of the table name -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension
Methods in mil.nga.geopackage.extension with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ExtensionsDao
ExtensionsDao. create(GeoPackageCoreConnection db)
Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.coverage
Methods in mil.nga.geopackage.extension.coverage with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static GriddedCoverageDao
GriddedCoverageDao. create(GeoPackageCoreConnection db)
Create the DAOstatic GriddedTileDao
GriddedTileDao. create(GeoPackageCoreConnection db)
Create the DAOstatic GriddedCoverageDao
CoverageDataCore. getGriddedCoverageDao(GeoPackageCoreConnection db)
Get a 2D Gridded Coverage DAOstatic GriddedTileDao
CoverageDataCore. getGriddedTileDao(GeoPackageCoreConnection db)
Get a 2D Gridded Tile DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.ecere.tile_matrix_set
Methods in mil.nga.geopackage.extension.ecere.tile_matrix_set with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ExtTileMatrixDao
ExtTileMatrixDao. create(GeoPackageCoreConnection db)
Create the DAOstatic ExtTileMatrixSetDao
ExtTileMatrixSetDao. create(GeoPackageCoreConnection db)
Create the DAOstatic TileMatrixTablesDao
TileMatrixTablesDao. create(GeoPackageCoreConnection db)
Create the DAOstatic TileMatrixVariableWidthsDao
TileMatrixVariableWidthsDao. create(GeoPackageCoreConnection db)
Create the DAOstatic ExtTileMatrixDao
TileMatrixSetExtension. getTileMatrixDao(GeoPackageCoreConnection db)
Get the Tile Matrix DAOstatic ExtTileMatrixSetDao
TileMatrixSetExtension. getTileMatrixSetDao(GeoPackageCoreConnection db)
Get the Tile Matrix Set DAOstatic TileMatrixTablesDao
TileMatrixSetExtension. getTileMatrixTablesDao(GeoPackageCoreConnection db)
Get the Tile Matrix Tables DAOstatic TileMatrixVariableWidthsDao
TileMatrixSetExtension. getTileMatrixVariableWidthsDao(GeoPackageCoreConnection db)
Get the Tile Matrix Variable Widths DAOConstructors in mil.nga.geopackage.extension.ecere.tile_matrix_set with parameters of type GeoPackageCoreConnection Constructor Description TileMatrixSetTableCreator(GeoPackageCoreConnection db)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.im.portrayal
Methods in mil.nga.geopackage.extension.im.portrayal with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static StylesDao
StylesDao. create(GeoPackageCoreConnection db)
Create the DAOstatic StylesheetsDao
StylesheetsDao. create(GeoPackageCoreConnection db)
Create the DAOstatic SymbolContentDao
SymbolContentDao. create(GeoPackageCoreConnection db)
Create the DAOstatic SymbolImagesDao
SymbolImagesDao. create(GeoPackageCoreConnection db)
Create the DAOstatic SymbolsDao
SymbolsDao. create(GeoPackageCoreConnection db)
Create the DAOstatic StylesDao
PortrayalExtension. getStylesDao(GeoPackageCoreConnection db)
Get the Styles DAOstatic StylesheetsDao
PortrayalExtension. getStylesheetsDao(GeoPackageCoreConnection db)
Get the Stylesheets DAOstatic SymbolContentDao
PortrayalExtension. getSymbolContentDao(GeoPackageCoreConnection db)
Get the Symbol Content DAOstatic SymbolImagesDao
PortrayalExtension. getSymbolImagesDao(GeoPackageCoreConnection db)
Get the Symbol Images DAOstatic SymbolsDao
PortrayalExtension. getSymbolsDao(GeoPackageCoreConnection db)
Get the Symbols DAOConstructors in mil.nga.geopackage.extension.im.portrayal with parameters of type GeoPackageCoreConnection Constructor Description PortrayalTableCreator(GeoPackageCoreConnection db)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.im.vector_tiles
Methods in mil.nga.geopackage.extension.im.vector_tiles with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static VectorTilesFieldsDao
VectorTilesFieldsDao. create(GeoPackageCoreConnection db)
Create the DAOstatic VectorTilesLayersDao
VectorTilesLayersDao. create(GeoPackageCoreConnection db)
Create the DAOstatic VectorTilesFieldsDao
VectorTilesExtension. getVectorTilesFieldsDao(GeoPackageCoreConnection db)
Get the Fields DAOstatic VectorTilesLayersDao
VectorTilesExtension. getVectorTilesLayersDao(GeoPackageCoreConnection db)
Get the Layers DAOConstructors in mil.nga.geopackage.extension.im.vector_tiles with parameters of type GeoPackageCoreConnection Constructor Description VectorTilesTableCreator(GeoPackageCoreConnection db)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.metadata
Methods in mil.nga.geopackage.extension.metadata with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static MetadataDao
MetadataDao. create(GeoPackageCoreConnection db)
Create the DAOstatic MetadataDao
MetadataExtension. getMetadataDao(GeoPackageCoreConnection db)
Get a Metadata DAOstatic MetadataReferenceDao
MetadataExtension. getMetadataReferenceDao(GeoPackageCoreConnection db)
Get a Metadata Reference DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.metadata.reference
Methods in mil.nga.geopackage.extension.metadata.reference with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static MetadataReferenceDao
MetadataReferenceDao. create(GeoPackageCoreConnection db)
Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.nga.contents
Methods in mil.nga.geopackage.extension.nga.contents with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ContentsIdDao
ContentsIdDao. create(GeoPackageCoreConnection db)
Create the DAOstatic ContentsIdDao
ContentsIdExtension. getContentsIdDao(GeoPackageCoreConnection db)
Get a Contents Id DAOConstructors in mil.nga.geopackage.extension.nga.contents with parameters of type GeoPackageCoreConnection Constructor Description ContentsIdTableCreator(GeoPackageCoreConnection db)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.nga.index
Methods in mil.nga.geopackage.extension.nga.index with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static GeometryIndexDao
GeometryIndexDao. create(GeoPackageCoreConnection db)
Create the DAOstatic TableIndexDao
TableIndexDao. create(GeoPackageCoreConnection db)
Create the DAOstatic GeometryIndexDao
FeatureTableCoreIndex. getGeometryIndexDao(GeoPackageCoreConnection db)
Get a Geometry Index DAOstatic TableIndexDao
FeatureTableCoreIndex. getTableIndexDao(GeoPackageCoreConnection db)
Get a Table Index DAOConstructors in mil.nga.geopackage.extension.nga.index with parameters of type GeoPackageCoreConnection Constructor Description GeometryIndexTableCreator(GeoPackageCoreConnection db)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.nga.link
Methods in mil.nga.geopackage.extension.nga.link with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static FeatureTileLinkDao
FeatureTileLinkDao. create(GeoPackageCoreConnection db)
Create the DAOstatic FeatureTileLinkDao
FeatureTileTableCoreLinker. getFeatureTileLinkDao(GeoPackageCoreConnection db)
Get a Feature Tile Link DAOConstructors in mil.nga.geopackage.extension.nga.link with parameters of type GeoPackageCoreConnection Constructor Description FeatureTileLinkTableCreator(GeoPackageCoreConnection db)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.nga.scale
Methods in mil.nga.geopackage.extension.nga.scale with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static TileScalingDao
TileScalingDao. create(GeoPackageCoreConnection db)
Create the DAOstatic TileScalingDao
TileTableScaling. getTileScalingDao(GeoPackageCoreConnection db)
Get a Tile Scaling DAOConstructors in mil.nga.geopackage.extension.nga.scale with parameters of type GeoPackageCoreConnection Constructor Description TileScalingTableCreator(GeoPackageCoreConnection db)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.related
Methods in mil.nga.geopackage.extension.related with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ExtendedRelationsDao
ExtendedRelationsDao. create(GeoPackageCoreConnection db)
Create the DAOstatic ExtendedRelationsDao
RelatedTablesCoreExtension. getExtendedRelationsDao(GeoPackageCoreConnection db)
Get a Extended Relations DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.rtree
Fields in mil.nga.geopackage.extension.rtree declared as GeoPackageCoreConnection Modifier and Type Field Description protected GeoPackageCoreConnection
RTreeIndexCoreExtension. connection
Connection -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.schema
Methods in mil.nga.geopackage.extension.schema with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static DataColumnConstraintsDao
SchemaExtension. getDataColumnConstraintsDao(GeoPackageCoreConnection db)
Get a Data Column Constraints DAOstatic DataColumnsDao
SchemaExtension. getDataColumnsDao(GeoPackageCoreConnection db)
Get a Data Columns DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.schema.columns
Methods in mil.nga.geopackage.extension.schema.columns with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static DataColumnsDao
DataColumnsDao. create(GeoPackageCoreConnection db)
Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.schema.constraints
Methods in mil.nga.geopackage.extension.schema.constraints with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static DataColumnConstraintsDao
DataColumnConstraintsDao. create(GeoPackageCoreConnection db)
Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.features.columns
Methods in mil.nga.geopackage.features.columns with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static GeometryColumnsDao
GeometryColumnsDao. create(GeoPackageCoreConnection db)
Create the DAOstatic GeometryColumnsSfSqlDao
GeometryColumnsSfSqlDao. create(GeoPackageCoreConnection db)
Create the DAOstatic GeometryColumnsSqlMmDao
GeometryColumnsSqlMmDao. create(GeoPackageCoreConnection db)
Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.srs
Methods in mil.nga.geopackage.srs with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static SpatialReferenceSystemDao
SpatialReferenceSystemDao. create(GeoPackageCoreConnection db)
Create the DAOstatic SpatialReferenceSystemSfSqlDao
SpatialReferenceSystemSfSqlDao. create(GeoPackageCoreConnection db)
Create the DAOstatic SpatialReferenceSystemSqlMmDao
SpatialReferenceSystemSqlMmDao. create(GeoPackageCoreConnection db)
Create the DAOstatic void
SpatialReferenceSystemDao. setExtensionValues(GeoPackageCoreConnection db, SpatialReferenceSystem srs)
Set extension values into the spatial reference system -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.tiles.matrix
Methods in mil.nga.geopackage.tiles.matrix with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static TileMatrixDao
TileMatrixDao. create(GeoPackageCoreConnection db)
Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.tiles.matrixset
Methods in mil.nga.geopackage.tiles.matrixset with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static TileMatrixSetDao
TileMatrixSetDao. create(GeoPackageCoreConnection db)
Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.user
Methods in mil.nga.geopackage.user that return GeoPackageCoreConnection Modifier and Type Method Description GeoPackageCoreConnection
UserCoreDao. getDb()
Get the database connectionMethods in mil.nga.geopackage.user with parameters of type GeoPackageCoreConnection Modifier and Type Method Description TTable
UserTableReader. readTable(GeoPackageCoreConnection db)
Read the tableConstructors in mil.nga.geopackage.user with parameters of type GeoPackageCoreConnection Constructor Description UserCoreDao(String database, GeoPackageCoreConnection db, UserCoreConnection<TColumn,TTable,TRow,TResult> userDb, TTable table)
Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.user.custom
Methods in mil.nga.geopackage.user.custom with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static UserCustomTable
UserCustomTableReader. readTable(GeoPackageCoreConnection connection, String tableName)
Read the table
-