Visiual Studio 2010 Problem - Mysql

11/19/2011 12:36 D3giX#1
Hallo liebe EPvpers,
ich habe ein Problem und zwar kriege ich ständig fehlermeldungen wenn ich eine Mysql connection aufbauen will.



Ich habe bei C++ Allgemein zusätzliche Include verzeichnisse angegeben.
C:\Program Files\MySQL\MySQL Server 5.5\include;%(AdditionalIncludeDirectories)


Ich habe bei Linker Allgemein bei zusätzliche biblioverzeichnisse das angegeben:
C:\Program Files\MySQL\MySQL Server 5.5\lib;%(AdditionalIncludeDirectories)


und bei Linker Eingabe (zusätzliche abhängigkeiten) : libmysql.lib angegeben.....



Hier mein Code:
Code:
#include "my_global.h" // Include this file first to avoid problems
#include "mysql.h" // MySQL Include File
#define SERVER "localhost"
#define USER "username"
#define PASSWORD "password"
#define DATABASE "databasename"
 
int main()
{
    MYSQL *connect; // Create a pointer to the MySQL instance
    connect=mysql_init(NULL); // Initialise the instance
    /* This If is irrelevant and you don't need to show it. I kept it in for Fault Testing.*/
    if(!connect)    /* If instance didn't initialize say so and exit with fault.*/
    {
        fprintf(stderr,"MySQL Initialization Failed");
        return 1;
    }
    /* Now we will actually connect to the specific database.*/
 
    connect=mysql_real_connect(connect,SERVER,USER,PASSWORD,DATABASE,0,NULL,0);
    /* Following if statements are unneeded too, but it's worth it to show on your
    first app, so that if your database is empty or the query didn't return anything it
    will at least let you know that the connection to the mysql server was established. */
 
    if(connect){
        printf("Connection Succeeded\n");
    }
    else{
        printf("Connection Failed!\n");
    }
    MYSQL_RES *res_set; /* Create a pointer to recieve the return value.*/
    MYSQL_ROW row;  /* Assign variable for rows. */
    mysql_query(connect,"SELECT * FROM TABLE");
    /* Send a query to the database. */
    unsigned int i = 0; /* Create a counter for the rows */
 
    res_set = mysql_store_result(connect); /* Receive the result and store it in res_set */
 
    unsigned int numrows = mysql_num_rows(res_set); /* Create the count to print all rows */
 
    /* This while is to print all rows and not just the first row found, */
 
    while ((row = mysql_fetch_row(res_set)) != NULL){
        printf("%s\n",row[i] != NULL ?
        row[i] : "NULL"); /* Print the row data */
    }
    mysql_close(connect);   /* Close and shutdown */
    return 0;
}


Hier die Fehler...

Fehler4error LNK2019: Verweis auf nicht aufgelöstes externes Symbol "_mysql_num_rows@4" in Funktion "_main".c:\Users\Dome\documents\visual studio 2010\Projects\mysqltest3\mysqltest3\main.obj
Fehler8error LNK2019: Verweis auf nicht aufgelöstes externes Symbol "_mysql_init@4" in Funktion "_main".c:\Users\Dome\documents\visual studio 2010\Projects\mysqltest3\mysqltest3\main.obj
Fehler3error LNK2019: Verweis auf nicht aufgelöstes externes Symbol "_mysql_fetch_row@4" in Funktion "_main".c:\Users\Dome\documents\visual studio 2010\Projects\mysqltest3\mysqltest3\main.obj
Fehler2error LNK2019: Verweis auf nicht aufgelöstes externes Symbol "_mysql_close@4" in Funktion "_main".c:\Users\Dome\documents\visual studio 2010\Projects\mysqltest3\mysqltest3\main.obj
Fehler9error LNK1120: 7 nicht aufgelöste externe Verweise.c:\users\dome\documents\visual studio 2010\Projects\mysqltest3\Debug\mysqltest3.exe
EDIT:: Das ganze habe ich in einem Win32 Projekt reingeschriebn...
Ich hoffe mir kann jmd weiterhelfen ... ich benutze Visiual Studio 2010 Ultimate.....
Installiert habe ich das Packet : MySQL Installer 5.5 von [Only registered and activated users can see links. Click Here To Register...]


ich habs auch schon mit dem Code hier probiert aber die INclude daten gibt es bei v5.5 nicht....
[Only registered and activated users can see links. Click Here To Register...]