LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 717|回复: 1

请问一个MySQL的接口程序连接问题。

[复制链接]
发表于 2004-1-7 12:01:55 | 显示全部楼层 |阅读模式
vc中,我新建一个win32 console  application,选择一个hello world,            
直接运行,都有错误!!!如下:                                                  
d:\study\vc-sam\rrr\rrr.cpp(4) : fatal error C1083: Cannot open precompiled he  
ader file: 'Debug/rrr.pch': No such file or directory                           
Error executing cl.exe.                                                         
除非我先编译下stdafx.cpp才行,晕阿     (问题一)]                              
                                                                                
#include <stdafx.h>                                                            
#include <stdio.h>                                                              
#include "c:\Mysql\include\mysql.h"   (老说我才头文件mysql.h  mysql_com.h   
                     出错,不知道为什么啊)               
                                                                                
int main(char **args)                                                           
{                                                                              
    MYSQL_RES *result;                                                         
        MYSQL_ROW row;                                                         
    MYSQL *connection,mysql;                                                   
        int state;           
mysql_init(&mysql);                                                     
        connection=mysql_real_connect(&mysql,"localhost","root","111","try",0,0,
0);                                                                             
                                                                                
        if(connection==NULL)                                                   
        {printf(mysql_error(&mysql));                                          
        return 1;                                                               
        }                                                                       
                                                                                
        state=mysql_query(connection,"select commission,concat(first_name,'     
',surname) as name from sales_rep");                                            
        if(state!=0)                                                            
        {printf(mysql_error(connection));                                       
        return 1;                                                               
        }                                                                     
   ........
 楼主| 发表于 2004-1-7 12:03:42 | 显示全部楼层
老说我mysql.h出错阿
这怎么可能啊??
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表