DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

(mysql.info) mysql-get-character-set-info

Info Catalog (mysql.info) mysql-free-result (mysql.info) c-api-functions (mysql.info) mysql-get-client-info
 
 22.2.3.26 `mysql_get_character_set_info()'
 ..........................................
 
 `void mysql_get_character_set_info(MYSQL *mysql, MY_CHARSET_INFO *cs)'
 
 *Description*
 
 This function provides information about the default client character
 set. The default character set may be changed with the
 `mysql_set_character_set()' function.
 
 This function was added in MySQL 5.0.10.
 
 *Example*
 
      if (!mysql_set_character_set(&mysql, "utf8"))
      {
          MY_CHARSET_INFO cs;
          mysql_get_character_set_info(&mysql, &cs);
          printf("character set information:\n");
          printf("character set name: %s\n", cs.name);
          printf("collation name: %s\n", cs.csname);
          printf("comment: %s\n", cs.comment);
          printf("directory: %s\n", cs.dir);
          printf("multi byte character min. length: %d\n", cs.mbminlen);
          printf("multi byte character max. length: %d\n", cs.mbmaxlen);
      }
 
Info Catalog (mysql.info) mysql-free-result (mysql.info) c-api-functions (mysql.info) mysql-get-client-info
automatically generated byinfo2html