Class SQLiteCommon

java.lang.Object
org.loboevolution.store.SQLiteCommon

public class SQLiteCommon extends Object

SQLiteCommon class.

  • Field Details

    • COOKIES

      public static final String COOKIES
      Constant COOKIES=" SELECT DISTINCT cookieName, cookieValu"{trunked}
      See Also:
    • INSERT_COOKIES

      public static final String INSERT_COOKIES
      Constant INSERT_COOKIES="INSERT INTO COOKIE (cookieName, cookieV"{trunked}
      See Also:
    • SOURCE_CACHE

      public static final String SOURCE_CACHE
      Constant SOURCE_CACHE="SELECT source FROM cache WHERE baseUrl "{trunked}
      See Also:
    • CHECK_CACHE

      public static final String CHECK_CACHE
      Constant CHECK_CACHE="SELECT count(*) FROM cache WHERE baseUr"{trunked}
      See Also:
    • INSERT_CACHE

      public static final String INSERT_CACHE
      Constant INSERT_CACHE="INSERT INTO CACHE (baseUrl, source, con"{trunked}
      See Also:
    • INPUT

      public static final String INPUT
      Constant INPUT="SELECT DISTINCT value from INPUT where "{trunked}
      See Also:
    • INPUT_LIMIT

      public static final String INPUT_LIMIT
      Constant INPUT="SELECT DISTINCT value from INPUT where "{trunked}
      See Also:
    • INSERT_INPUT

      public static final String INSERT_INPUT
      Constant INSERT_INPUT="INSERT INTO INPUT (name, value) VALUES("{trunked}
      See Also:
    • DELETE_INPUT

      public static final String DELETE_INPUT
      Constant DELETE_INPUT="DELETE FROM INPUT"
      See Also:
    • DELETE_INPUT2

      public static final String DELETE_INPUT2
      Constant DELETE_INPUT="DELETE FROM INPUT"
      See Also:
    • DELETE_SOURCE_CACHE

      public static final String DELETE_SOURCE_CACHE
      Constant DELETE_SOURCE_CACHE="DELETE FROM cache WHERE baseUrl = ? AND"{trunked}
      See Also:
    • DELETE_ALL_CACHE

      public static final String DELETE_ALL_CACHE
      Constant DELETE_ALL_CACHE="DELETE FROM cache
      See Also:
    • WEBSTORAGE_VALUE

      public static final String WEBSTORAGE_VALUE
      Constant LINK="SELECT NAME FROM WEB_STORAGE WHERE"{trunked}
      See Also:
    • WEBSTORAGE_MAP

      public static final String WEBSTORAGE_MAP
      Constant LINK="SELECT NAME, VALUE FROM WEB_STORAGE"{trunked}
      See Also:
    • WEBSTORAGE_DELETE_KEY

      public static final String WEBSTORAGE_DELETE_KEY
      Constant WEBSTORAGE_DELETE_KEY="DELETE FROM WEB_STORAGE WHER"{trunked}
      See Also:
    • DELETE_WEBSTORAGE

      public static final String DELETE_WEBSTORAGE
      Constant DELETE_WEBSTORAGE="DELETE FROM WEB_STORAGE WHER"{trunked}
      See Also:
    • DELETE_ALL_WEBSTORAGE

      public static final String DELETE_ALL_WEBSTORAGE
      Constant DELETE_WEBSTORAGE="DELETE FROM WEB_STORAGE WHER"{trunked}
      See Also:
    • WEBSTORAGE

      public static final String WEBSTORAGE
      Constant WEBSTORAGE="INSERT INTO WEB_STORAGE (key, value, session) "{trunked}
      See Also:
    • WEBSTORAGE_SIZE

      public static final String WEBSTORAGE_SIZE
      Constant WEBSTORAGE_SIZE="SELECT COUNT(*) FROM LINK_VISITED WHERE"{trunked}
      See Also:
  • Constructor Details

    • SQLiteCommon

      public SQLiteCommon()