Codota Logo
ContentsDao.query
Code IndexAdd Codota to your IDE (free)

How to use
query
method
in
mil.nga.geopackage.core.contents.ContentsDao

Best Java code snippets using mil.nga.geopackage.core.contents.ContentsDao.query (Showing top 4 results out of 315)

  • Common ways to obtain ContentsDao
private void myMethod () {
ContentsDao c =
  • Codota IconGeoPackage geoPackage;geoPackage.getContentsDao()
  • Smart code suggestions by Codota
}
origin: mil.nga.geopackage/geopackage-core

/**
 * Delete the Contents matching the prepared query, cascading optionally
 * including the user table
 * 
 * @param preparedDelete
 *            prepared delete query
 * @param userTable
 *            true if a user table
 * @return deleted count
 * @throws SQLException
 *             upon deletion error
 */
public int deleteCascade(PreparedQuery<Contents> preparedDelete,
    boolean userTable) throws SQLException {
  int count = 0;
  if (preparedDelete != null) {
    List<Contents> contentsList = query(preparedDelete);
    count = deleteCascade(contentsList, userTable);
  }
  return count;
}
origin: ngageoint/geopackage-android

    .ge(Contents.COLUMN_MIN_Y, 0);
PreparedQuery<Contents> preparedQuery = qb.prepare();
List<Contents> queryContents = dao.query(preparedQuery);
origin: ngageoint/geopackage-android

    .le(Contents.COLUMN_LAST_CHANGE, contents.getLastChange());
PreparedQuery<Contents> query = qb.prepare();
queryContentsList = dao.query(query);
    .gt(Contents.COLUMN_LAST_CHANGE, contents.getLastChange());
query = qb.prepare();
queryContentsList = dao.query(query);
origin: ngageoint/geopackage-android

    contents.getDataType().getName());
PreparedQuery<Contents> query = qb.prepare();
List<Contents> queryResults = dao.query(query);
int count = queryResults.size();
geometryColumnsIds = new ArrayList<TableColumnKey>();
mil.nga.geopackage.core.contentsContentsDaoquery

Popular methods of ContentsDao

  • queryForId
  • create
    Verify optional tables have been created
  • update
  • delete
  • deleteCascade
    Delete the Contents, cascading optionally including the user table
  • getTables
    Get table names by data type
  • isTableExists
  • queryForAll
  • queryForEq
  • countOf
  • deleteBuilder
  • deleteByIdCascade
    Delete a Contents by id, cascading optionally including the user table
  • deleteBuilder,
  • deleteByIdCascade,
  • deleteIdsCascade,
  • deleteTable,
  • dropTable,
  • getBoundingBox,
  • getContents,
  • getGeometryColumnsDao,
  • getTileMatrixDao

Popular in Java

  • Making http post requests using okhttp
  • compareTo (BigDecimal)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • startActivity (Activity)
  • PrintStream (java.io)
    A PrintStream adds functionality to another output stream, namely the ability to print representatio
  • Hashtable (java.util)
    Hashtable is a synchronized implementation of Map. All optional operations are supported.Neither key
  • ConcurrentHashMap (java.util.concurrent)
    A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updat
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now