📄 db.h
字号:
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- *//* This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, * version 2, as published by the Free Software Foundation * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307, USA. */#ifndef __YUM_DB_H__#define __YUM_DB_H__#include <glib.h>#include <sqlite3.h>#include "package.h"#define YUM_SQLITE_CACHE_DBVERSION 10#define YUM_DB_ERROR yum_db_error_quark()GQuark yum_db_error_quark (void);typedef void (*CreateTablesFn) (sqlite3 *db, GError **err);char *yum_db_filename (const char *prefix);sqlite3 *yum_db_open (const char *path, const char *checksum, CreateTablesFn create_tables, GError **err);void yum_db_dbinfo_update (sqlite3 *db, const char *checksum, GError **err);GHashTable *yum_db_read_package_ids (sqlite3 *db, GError **err);/* Primary */void yum_db_create_primary_tables (sqlite3 *db, GError **err);sqlite3_stmt *yum_db_package_prepare (sqlite3 *db, GError **err);void yum_db_package_write (sqlite3 *db, sqlite3_stmt *handle, Package *p);sqlite3_stmt *yum_db_dependency_prepare (sqlite3 *db, const char *table, GError **err);void yum_db_dependency_write (sqlite3 *db, sqlite3_stmt *handle, gint64 pkgKey, Dependency *dep, gboolean isRequirement);sqlite3_stmt *yum_db_file_prepare (sqlite3 *db, GError **err);void yum_db_file_write (sqlite3 *db, sqlite3_stmt *handle, gint64 pkgKey, PackageFile *file);/* Filelists */void yum_db_create_filelist_tables (sqlite3 *db, GError **err);sqlite3_stmt *yum_db_package_ids_prepare (sqlite3 *db, GError **err);void yum_db_package_ids_write (sqlite3 *db, sqlite3_stmt *handle, Package *p);sqlite3_stmt *yum_db_filelists_prepare (sqlite3 *db, GError **err);void yum_db_filelists_write (sqlite3 *db, sqlite3_stmt *handle, Package *p);/* Other */void yum_db_create_other_tables (sqlite3 *db, GError **err);sqlite3_stmt *yum_db_changelog_prepare (sqlite3 *db, GError **err);void yum_db_changelog_write (sqlite3 *db, sqlite3_stmt *handle, Package *p);#endif /* __YUM_DB_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -