我使用C使用Berkeley DB创建了一个.db文件。我想查看.db文件中的内容。当我在linux机器上没有GUI时如何实现这一点?
答案 0 :(得分:0)
如果您的系统已安装Berkeley DB,您可以像这样使用它,它是一个测试的演示,希望它可以解决您的问题:
#include <stdio.h>
#include <stdlib.h>
#include <db.h>
#define DATABASE "test.db"
typedef struct _data_struct {
int data_id;
char data[20];
} data_struct;
int main()
{
DBT key, data;
DB *dbp;
int ret;
data_struct my_data;
ret = db_create(&dbp, NULL, 0); // create the DB handle
if (ret != 0)
{
perror("create");
return 1;
}
ret = dbp->open(dbp, NULL, DATABASE, NULL, DB_BTREE, DB_CREATE, 0); // open the database
if (ret != 0)
{
perror("open");
return 1;
}
my_data.data_id = 1;
strcpy(my_data.data, "some data");
memset(&key, 0, sizeof(DBT));
memset(&data, 0, sizeof(DBT));
key.data = &(my_data.data_id);
key.size = sizeof(my_data.data_id);
data.data = &my_data;
data.size = sizeof(my_data);
ret = dbp->put(dbp, NULL, &key, &data, DB_NOOVERWRITE); // add the new data into the database
if (ret != 0)
{
printf("Data ID exists\n");
}
dbp->close(dbp, 0); // close the database
return 0;
}