我的数据库中的表有一个blob类型列。我用它来存储以下结构:
struct a
{
int x;
string y;
} ;
我已经编写了一个C ++函数来使用上面提到的结构变量来检索这个blob。我正在使用cass_value_get_bytes函数。
问题是如果我使用上面提到的结构,我会遇到分段错误。但是,如果我将字符串类型更改为字符数组,则问题将得到解决。 我无法理解为什么我不能使用字符串变量,因为它使用字符串比使用字符数组更整洁。
答案 0 :(得分:2)
函数cass_value_get_string()
和cass_value_get_bytes()
将指针返回到生命周期为CassResult
的缓冲区。删除结果时,值的内存也是如此。您需要将内存复制到字符串的缓冲区中。 cass_value_get_string()
也可用于blob,并且无需执行reinterpret_cast<>
。您可以执行以下操作:
#include <cassandra.h>
#include <string>
std::string to_string(CassValue* value) {
const char* str;
size_t len;
cass_value_get_string(value, &str, &len);
return std::string(str, len);
}
struct SomeData {
int x;
std::string y;
};
int main() {
SomeData data;
CassValue* value = NULL; /* This needs to be set from the result */
data.y = to_string(value);
}
答案 1 :(得分:0)
You need to allocate memory dynamically,Watch this Example.
#include<stdlib.h>
#include<string.h>
#include<stdio.h>
struct employee{
int no;
char name[20];
double sal;
} ;
void main()
{
struct employee emp={
1234,"Aravind",20000.0
};
struct employee *e=(struct employee*) malloc( sizeof(struct employee)*1 );
strcpy(e->name,"Byju");
e->sal=20000.0;
e->no=1265;
printf("\n %d \t %s \t %lf",emp.no,emp.name,emp.sal);
printf("\n %d \t %s \t %lf",e->no,e->name,e->sal);
}
Output:
1234 Aravind 20000.000000
1265 Byju 20000.000000