User Tools

Site Tools


c:mysql:mysql.h:mysql_get_host_info

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:mysql:mysql.h:mysql_get_host_info [2013/02/26 14:37]
158.181.88.241
c:mysql:mysql.h:mysql_get_host_info [2024/02/16 01:12] (current)
Line 5: Line 5:
  
 ==== description of mysql_get_host_info ==== ==== description of mysql_get_host_info ====
-mysql_get_host_info is in work by code-reference.com \\  +returns the mysql host information
-if you are faster... don't hasitate and add it+
  
 compile with gcc mysql_get_host_info.c -o mysql_get_host_info `mysql_config –cflags –libs` -Wall  compile with gcc mysql_get_host_info.c -o mysql_get_host_info `mysql_config –cflags –libs` -Wall 
 <code c> <code c>
-no example at the moment+#include <stdio.h> /* including standard library */  
 +#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,"user"); 
 +sprintf(pass,"pass"); 
 +  
 +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"); 
 +  } 
 +  
 + 
 +printf("%s\n", mysql_get_host_info(my)); 
 + 
 +mysql_close(my); 
 +return 0; 
 +}
 </code> </code>
  
 ===== output of mysql_get_host_info c example ===== ===== output of mysql_get_host_info c example =====
-    no example at the moment+    Login correct 
 +    Localhost via UNIX socket
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/mysql/mysql.h/mysql_get_host_info.txt · Last modified: 2024/02/16 01:12 (external edit)

Impressum Datenschutz