我正在尝试使用 C API 查询 mysql 5.5。
dbutil.c 包含样板代码:
#include "../include/dbutil.h"
#include "../include/logging.h"
#include "../include/common.h"
MYSQL get_connection(char *host, char *user, char *passwd, char *db) {
MYSQL conn;
mysql_init(&conn);
if (!mysql_real_connect(&conn, host, user, passwd, db, 0, NULL, 0)) {
log_to_console("Cannot connect to MySQL server: %s", mysql_error(&conn));
exit(1);
}
return conn;
}
MYSQL_STMT prepare_stmt(MYSQL *conn, char *sql) {
MYSQL_STMT *stmtP = mysql_stmt_init(conn);
if (!stmtP) {
log_to_console("Cannot create statement, out of memory.");
exit(1);
}
MYSQL_STMT stmt = *stmtP;
if (mysql_stmt_prepare(&stmt, sql, strlen(sql))) {
log_to_console("Preparing statement failed: %s", mysql_error(conn));
exit(1);
}
return stmt;
}
void bind_param(MYSQL_BIND *param, enum enum_field_types fieldType, char* buffer, my_bool *isNull, unsigned long *length) {
param->buffer_type = fieldType;
param->buffer = buffer;
param->is_null = isNull;
param->length = length;
}
void bind_string_param(MYSQL_BIND *param, int stringSize, char* buffer, my_bool *isNull, unsigned long *length) {
bind_param(param, MYSQL_TYPE_STRING, buffer, isNull, length);
param->buffer_length = stringSize;
}
void bind_result(MYSQL_BIND *result, enum enum_field_types fieldType, char* buffer, my_bool *isNull, unsigned long *length) {
bind_param(result, fieldType, buffer, isNull, length);
}
void bind_string_result(MYSQL_BIND *result, int stringSize, char* buffer, my_bool *isNull, unsigned long *length) {
bind_string_param(result, stringSize, buffer, isNull, length);
}
这是实际运行查询的代码:
#include "../include/dbutil.h"
int main() {
MYSQL conn = get_connection("localhost", "user", "pass", "test");
MYSQL_STMT stmt = prepare_stmt(&conn, "SELECT hostname from hosts where id = ?");
MYSQL_BIND param[1], result[1];
memset(param, 0, sizeof(param));
memset(result, 0, sizeof(result));
int in = 1;
unsigned long length = 200;
my_bool isNull[2];
isNull[0] = 0;
char out[200];
bind_param(¶m[0], MYSQL_TYPE_LONG, (char *) &in, &isNull[0], (unsigned long *)0);
bind_string_result(&result[0], 200, (char *) &out, &isNull[1], &length);
mysql_stmt_bind_param(&stmt, param);
mysql_stmt_execute(&stmt);
mysql_stmt_bind_result(&stmt, result);
mysql_stmt_store_result(&stmt);
mysql_stmt_fetch(&stmt);
printf("Restult %s\n", out);
mysql_stmt_close(&stmt);
mysql_close(&conn);
return 0;
}
语句执行并返回预期结果,但代码在命中时出现段错误
mysql_stmt_close(&stmt);
我查看了核心转储,发现段错误是由 libc free() 语句引起的,我认为它是在 libmysql.c 的 free_root() 中调用的,在
my_bool STDCALL mysql_stmt_close(MYSQL_STMT *stmt)
{
MYSQL *mysql= stmt->mysql;
int rc= 0;
DBUG_ENTER("mysql_stmt_close");
free_root(&stmt->result.alloc, MYF(0));
free_root(&stmt->mem_root, MYF(0));
free_root(&stmt->extension->fields_mem_root, MYF(0));
...
具体来说。核心转储说 *stmt.extension 是语句关闭发生的时间。知道为什么会这样吗?
最佳答案
听起来代码/库正在尝试free()一些已经释放的内存。
谷歌搜索后,我找到了 this link.在调用 mysql_stmt_close() 之前,您似乎应该检查以确保 stmt 不为 NULL。如果 stmt 已经是 NULL,库已经清理了它并且没有必要调用 mysql_stmt_close()。
关于mysql - mysql_stmt_close 时出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12662868/
我正在用Ruby编写一个简单的程序来检查域列表是否被占用。基本上它循环遍历列表,并使用以下函数进行检查。require'rubygems'require'whois'defcheck_domain(domain)c=Whois::Client.newc.query("google.com").available?end程序不断出错(即使我在google.com中进行硬编码),并打印以下消息。鉴于该程序非常简单,我已经没有什么想法了-有什么建议吗?/Library/Ruby/Gems/1.8/gems/whois-2.0.2/lib/whois/server/adapters/base.
大约一年前,我决定确保每个包含非唯一文本的Flash通知都将从模块中的方法中获取文本。我这样做的最初原因是为了避免一遍又一遍地输入相同的字符串。如果我想更改措辞,我可以在一个地方轻松完成,而且一遍又一遍地重复同一件事而出现拼写错误的可能性也会降低。我最终得到的是这样的:moduleMessagesdefformat_error_messages(errors)errors.map{|attribute,message|"Error:#{attribute.to_s.titleize}#{message}."}enddeferror_message_could_not_find(obje
我想为Heroku构建一个Rails3应用程序。他们使用Postgres作为他们的数据库,所以我通过MacPorts安装了postgres9.0。现在我需要一个postgresgem并且共识是出于性能原因你想要pggem。但是我对我得到的错误感到非常困惑当我尝试在rvm下通过geminstall安装pg时。我已经非常明确地指定了所有postgres目录的位置可以找到但仍然无法完成安装:$envARCHFLAGS='-archx86_64'geminstallpg--\--with-pg-config=/opt/local/var/db/postgresql90/defaultdb/po
我遵循MichaelHartl的“RubyonRails教程:学习Web开发”,并创建了检查用户名和电子邮件长度有效性的测试(名称最多50个字符,电子邮件最多255个字符)。test/helpers/application_helper_test.rb的内容是:require'test_helper'classApplicationHelperTest在运行bundleexecraketest时,所有测试都通过了,但我看到以下消息在最后被标记为错误:ERROR["test_full_title_helper",ApplicationHelperTest,1.820016791]test
我是rails的新手,想在form字段上应用验证。myviewsnew.html.erb.....模拟.rbclassSimulation{:in=>1..25,:message=>'Therowmustbebetween1and25'}end模拟Controller.rbclassSimulationsController我想检查模型类中row字段的整数范围,如果不在范围内则返回错误信息。我可以检查上面代码的范围,但无法返回错误消息提前致谢 最佳答案 关键是您使用的是模型表单,一种显示ActiveRecord模型实例属性的表单。c
我正在尝试编写一个将文件上传到AWS并公开该文件的Ruby脚本。我做了以下事情:s3=Aws::S3::Resource.new(credentials:Aws::Credentials.new(KEY,SECRET),region:'us-west-2')obj=s3.bucket('stg-db').object('key')obj.upload_file(filename)这似乎工作正常,除了该文件不是公开可用的,而且我无法获得它的公共(public)URL。但是当我登录到S3时,我可以正常查看我的文件。为了使其公开可用,我将最后一行更改为obj.upload_file(file
我克隆了一个rails仓库,我现在正尝试捆绑安装背景:OSXElCapitanruby2.2.3p173(2015-08-18修订版51636)[x86_64-darwin15]rails-v在您的Gemfile中列出的或native可用的任何gem源中找不到gem'pg(>=0)ruby'。运行bundleinstall以安装缺少的gem。bundleinstallFetchinggemmetadatafromhttps://rubygems.org/............Fetchingversionmetadatafromhttps://rubygems.org/...Fe
在Cooper的书BeginningRuby中,第166页有一个我无法重现的示例。classSongincludeComparableattr_accessor:lengthdef(other)@lengthother.lengthenddefinitialize(song_name,length)@song_name=song_name@length=lengthendenda=Song.new('Rockaroundtheclock',143)b=Song.new('BohemianRhapsody',544)c=Song.new('MinuteWaltz',60)a.betwee
我是Google云的新手,我正在尝试对其进行首次部署。我的第一个部署是RubyonRails项目。我基本上是在关注thisguideinthegoogleclouddocumentation.唯一的区别是我使用的是我自己的项目,而不是他们提供的“helloworld”项目。这是我的app.yaml文件runtime:customvm:trueentrypoint:bundleexecrackup-p8080-Eproductionconfig.ruresources:cpu:0.5memory_gb:1.3disk_size_gb:10当我转到我的项目目录并运行gcloudprevie
我有两个Rails模型,即Invoice和Invoice_details。一个Invoice_details属于Invoice,一个Invoice有多个Invoice_details。我无法使用accepts_nested_attributes_forinInvoice通过Invoice模型保存Invoice_details。我收到以下错误:(0.2ms)BEGIN(0.2ms)ROLLBACKCompleted422UnprocessableEntityin25ms(ActiveRecord:4.0ms)ActiveRecord::RecordInvalid(Validationfa