dbms.hrh
来自「Symbian S60 DBMS example」· HRH 代码 · 共 45 行
HRH
45 行
/*
* ============================================================================
* Name : DBMS resource header file DBMS.hrh
* Part of : DBMS
* Created : 04.11.2006 by Forum Nokia
* Description:
* This file contains declarations for constants of DBMS example.
* The file can be included in C++ or resource file.
*
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __DBMS_HRH__
#define __DBMS_HRH__
// DBMS enumerate command codes
enum TDBMSIds
{
EOpenCmd = 1, // Open existing database
ECreateCmd, // Create (replace) and open a database
ERemoveDbCmd, // Drop database and delete file
EAddBookCmd, // Show the book editor view for adding a book
EBackCmd, // Back from book editor view
EAddBookAPICmd, // Add a book using DBMS API
EAddBookSQLCmd, // Add a book using SQL
ERemoveBookCmd, // Remove a named book(s)
ERemoveAllBooksCmd,// Remove all books
EChangeTitleCmd, // Change title for a book
EGetAllBooksCmd, // Refresh list of all books in database
ESearchBooksCmd, // Search a book with name (title)
EQuickFindCmd, // Retrieve details of book using index
EAddDateCmd, // Add a date column to books table
ERemoveDateCmd, // Remove the date column from books table
EColumnNamesCmd, // Get column names of books table
ECloseCmd // Close an open database
};
#endif // __DBMS_HRH__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?