MySQL 3.23.33: mysql_character_set_name function in libmysql.dll

2001-03-31 Thread mySQLDAC

Hello John,

We are developing the next version of MySQLDAC (MySQL Direct access
components for Delphi/C++ Builder).

We've found
const char * STDCALL mysql_character_set_name(MYSQL *mysql) in mysqlh.h

But we've not found this function in libmysql.dll (ver.3.23.33)

Is ther alternative ways to get information about DB's charset? Will
this function realisation appear in the next versions?

Thank you.
---
Best regards,
Edward Smirnov 
microOLAP Technologies LLC
mailto:[EMAIL PROTECTED]

Delphi/C++ Builder DB Connectivity components for:

mySQL  - http://www.microolap.com/mysqldac.htm
Sybase ASA - http://www.microolap.com/asadac.htm
Sybase ASE - http://www.microolap.com/asedac.htm



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: MySQL 3.23.33: mysql_character_set_name function in libmysql.dll

2001-03-31 Thread Sinisa Milivojevic

mySQLDAC writes:
  Hello John,
  
  We are developing the next version of MySQLDAC (MySQL Direct access
  components for Delphi/C++ Builder).
  
  We've found
  const char * STDCALL mysql_character_set_name(MYSQL *mysql) in mysqlh.h
  
  But we've not found this function in libmysql.dll (ver.3.23.33)
  
  Is ther alternative ways to get information about DB's charset? Will
  this function realisation appear in the next versions?
  
  Thank you.
  ---
  Best regards,
  Edward Smirnov 
  microOLAP Technologies LLC
  mailto:[EMAIL PROTECTED]
  
  Delphi/C++ Builder DB Connectivity components for:
  
  mySQL  - http://www.microolap.com/mysqldac.htm
  Sybase ASA - http://www.microolap.com/asadac.htm
  Sybase ASE - http://www.microolap.com/asedac.htm
  


Hi!

There is no such function in mysql.h.


Regards,

Sinisa

    __ _   _  ___ ==  MySQL AB
 /*/\*\/\*\   /*/ \*\ /*/ \*\ |*| Sinisa Milivojevic
/*/ /*/ /*/   \*\_   |*|   |*||*| mailto:[EMAIL PROTECTED]
   /*/ /*/ /*/\*\/*/  \*\|*|   |*||*| Larnaca, Cyprus
  /*/ /*/  /*/\*\_/*/ \*\_/*/ |*|
  /*/^^^\*\^^^
 /*/ \*\Developers Team

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re[2]: MySQL 3.23.33: mysql_character_set_name function in libmysql.dll

2001-03-31 Thread Edward Smirnov

Hello Sinisa,

Saturday, March 31, 2001, 3:45:27 PM, you wrote:

SM There is no such function in mysql.h.

Small piece from mysql.h is below:
**
char * STDCALL mysql_error(MYSQL *mysql);
char * STDCALL mysql_info(MYSQL *mysql);
unsigned long STDCALL mysql_thread_id(MYSQL *mysql);
const char * STDCALL mysql_character_set_name(MYSQL *mysql);
 ^^^
MYSQL * STDCALL mysql_init(MYSQL *mysql);
**

Moreover, this function is described in
manual_Clients.htm#mysql_character_set_name, Chapter 23.4.5 named
mysql_character_set_name.

Check it once more, please!

SM   const char * STDCALL mysql_character_set_name(MYSQL *mysql) in mysql.h
SM   
SM   But we've not found this function in libmysql.dll (ver.3.23.33)
SM   
SM   Is ther alternative ways to get information about DB's charset? Will
SM   this function realisation appear in the next versions?

---
Best regards,
Edward Smirnov 
microOLAP Technologies LLC
mailto:[EMAIL PROTECTED]

Delphi/C++ Builder DB Connectivity components for:

mySQL  - http://www.microolap.com/mysqldac.htm
Sybase ASA - http://www.microolap.com/asadac.htm
Sybase ASE - http://www.microolap.com/asedac.htm



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Re[2]: MySQL 3.23.33: mysql_character_set_name function in libmysql.dll

2001-03-31 Thread Sinisa Milivojevic

Edward Smirnov writes:
  Hello Sinisa,
  
  Saturday, March 31, 2001, 3:45:27 PM, you wrote:
  
  SM There is no such function in mysql.h.
  
  Small piece from mysql.h is below:
  **
  char * STDCALL mysql_error(MYSQL *mysql);
  char * STDCALL mysql_info(MYSQL *mysql);
  unsigned long STDCALL mysql_thread_id(MYSQL *mysql);
  const char * STDCALL mysql_character_set_name(MYSQL *mysql);
   ^^^
  MYSQL * STDCALL mysql_init(MYSQL *mysql);
  **
  
  Moreover, this function is described in
  manual_Clients.htm#mysql_character_set_name, Chapter 23.4.5 named
  mysql_character_set_name.
  
  Check it once more, please!

Well, you are right, I have not read well function name first time.

Try to get latest Win32 client and check if it is there.

It is in libmysql.c, so it should be there. 

If it is not, well, just add it :

const char * STDCALL mysql_character_set_name(MYSQL *mysql)
{
  return mysql-charset-name;
}



Regards,

Sinisa

    __ _   _  ___ ==  MySQL AB
 /*/\*\/\*\   /*/ \*\ /*/ \*\ |*| Sinisa Milivojevic
/*/ /*/ /*/   \*\_   |*|   |*||*| mailto:[EMAIL PROTECTED]
   /*/ /*/ /*/\*\/*/  \*\|*|   |*||*| Larnaca, Cyprus
  /*/ /*/  /*/\*\_/*/ \*\_/*/ |*|
  /*/^^^\*\^^^
 /*/ \*\Developers Team

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php