首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Mysql >

求 vc 访问postgresql 实例一份 多谢

2012-02-15 
求 vc 访问postgresql 实例一份 谢谢!如题谢谢![解决办法]手册中的例子。MySQL官方文档 http://dev.mysql.c

求 vc 访问postgresql 实例一份 谢谢!
如题

谢谢!

[解决办法]
手册中的例子。
MySQL官方文档 http://dev.mysql.com/doc/refman/5.1/zh/index.html


C/C++ code
char query[1000],*end;end = strmov(query,"INSERT INTO test_table values(");*end++ = '\'';end += mysql_real_escape_string(&mysql, end,"What is this",12);*end++ = '\'';*end++ = ',';*end++ = '\'';end += mysql_real_escape_string(&mysql, end,"binary data: \0\r\n",16);*end++ = '\'';*end++ = ')';if (mysql_real_query(&mysql,query,(unsigned int) (end - query))){   fprintf(stderr, "Failed to insert row, Error: %s\n",           mysql_error(&mysql));} 

热点排行