This shows you the differences between two versions of the page.
|
c:mysql:mysql.h:mysql_character_set_name [2013/02/25 23:28] Daniel Gohlke |
c:mysql:mysql.h:mysql_character_set_name [2024/02/16 01:12] (current) |
||
|---|---|---|---|
| Line 5: | Line 5: | ||
| ==== description of mysql_character_set_name ==== | ==== description of mysql_character_set_name ==== | ||
| - | mysql_character_set_name is in work by code-reference.com \\ | + | mysql_character_set_name returns the default character set for the current connection. |
| - | if you are faster... don't hasitate and add it | + | |
| <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,"username"); | ||
| + | sprintf(pass,"password"); | ||
| + | |||
| + | 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("default character %s\n", mysql_character_set_name(my) ); | ||
| + | |||
| + | mysql_close(my); | ||
| + | return 0; | ||
| + | } | ||
| </code> | </code> | ||
| ===== output of mysql_character_set_name c example ===== | ===== output of mysql_character_set_name c example ===== | ||
| - | no example at the moment | + | Login correct |
| + | default character latin1 | ||