-
- // HTML5 DB -----------------------------------------------------------
-
-#if ENABLE(DATABASE)
- // Opens a database file
- // 'desiredFlags' is a collection of OR'd SQLite constants that
- // determine how the file should be opened
- static PlatformFileHandle databaseOpenFile(const String& fileName, int desiredFlags);
-
- // Deletes a database file
- // Returns 'true' if the file was deleted; 'false' otherwise
- static bool databaseDeleteFile(const String& fileName);
-
- // Returns the file attributes of the given database file
- static long databaseGetFileAttributes(const String& fileName);
-
- // Returns size of the given file
- static long long databaseGetFileSize(const String& fileName);
-#endif