You are here

private function SQLite3Cache::getFields in Plug 7

Gets an array of the fields in our table.

Return value

array

4 calls to SQLite3Cache::getFields()
SQLite3Cache::doDelete in lib/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
Deletes a cache entry.
SQLite3Cache::doSave in lib/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
Puts data into the cache.
SQLite3Cache::findById in lib/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
Find a single row by ID.
SQLite3Cache::__construct in lib/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
Constructor.

File

lib/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php, line 202

Class

SQLite3Cache
SQLite3 cache provider.

Namespace

Doctrine\Common\Cache

Code

private function getFields() {
  return array(
    static::ID_FIELD,
    static::DATA_FIELD,
    static::EXPIRATION_FIELD,
  );
}