This shows you the differences between two versions of the page.
|
c:mysql:mysql.h:mysql_close [2013/02/03 20:19] 127.0.0.1 external edit |
c:mysql:mysql.h:mysql_close [2024/02/16 01:12] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== mysql_close ====== | ====== mysql_close ====== | ||
| <code c> | <code c> | ||
| + | void mysql_close(MYSQL *mysql); | ||
| </code> | </code> | ||
| ==== description of mysql_close ==== | ==== description of mysql_close ==== | ||
| - | mysql_close is in work by code-reference.com \\ | + | close a previously opened connection\\ |
| - | if you are faster... don't hasitate and add it | + | and deallocates the connection handle pointet to mysql\\ |
| + | if a pointer was set before from mysql_init\\ | ||
| <code c> | <code c> | ||
| - | no example at the moment | + | #include <stdio.h> /* including standard library */ |
| + | //#include <windows.h> /* uncomment this for Windows */ | ||
| + | |||
| + | #include <mysql/mysql.h> | ||
| + | |||
| + | MYSQL *my; | ||
| + | |||
| + | int main( void ){ | ||
| + | char host[20]; | ||
| + | char user[20]; | ||
| + | char pass[20]; | ||
| + | |||
| + | my = mysql_init(NULL); | ||
| + | |||
| + | |||
| + | sprintf(host,"localhost"); | ||
| + | sprintf(user,"root"); | ||
| + | sprintf(pass,"yourpass"); | ||
| + | |||
| + | if (my == NULL ) { | ||
| + | printf("Cant initalisize MySQL\n"); | ||
| + | return 1; | ||
| + | } | ||
| + | |||
| + | if( mysql_real_connect (my,host,user,pass,NULL,0,NULL,0) == NULL) { | ||
| + | printf("Error cant login\n"); | ||
| + | } else { | ||
| + | printf("Login correct\n"); | ||
| + | } | ||
| + | |||
| + | mysql_close(my); | ||
| + | printf("close connection"); | ||
| + | return 0; | ||
| + | } | ||
| </code> | </code> | ||
| ===== output of mysql_close c example ===== | ===== output of mysql_close c example ===== | ||
| - | no example at the moment | + | Login Correct |
| + | close connection | ||