Mysql++

code:
#include <mysql/mysql.h>
#include <my_global.h>
int main(int argc, char **argv)
{

MYSQL *conn;

conn = mysql_init(NULL);
mysql_real_connect(conn, "localhost", "zetcode", "passwd", "testdb", 0, NULL, 0);

mysql_query(conn, "use vobd_db");

mysql_query(conn, "select * from obd_call_status limit 10");

result = mysql_store_result(conn);
mysql_close(conn);

}
output :
mysql.c:2:23: error: my_global.h: No such file or directory
mysql.c: In function �int main(int, char**)�:
mysql.c:8: error: �NULL� was not declared in this scope
mysql.c:15: error: �result� was not declared in this scope

can anyone wana try removing the errors

Please read the rules, which you agreed to when you registered, if you have not already done so.

Thank You.

The UNIX and Linux Forums.