커피와 개발자

[MySQL API] mysql_get_server_info() 본문

데이터베이스/SQL

[MySQL API] mysql_get_server_info()

광박이 2011. 3. 3. 14:28
728x90
서버의 버전 정보를 알아낸다.

【예제】
<html><body>
< ?
    mysql_connect("localhost", "mysql_user", "mysql_password") or
        die("could not connect");
    printf ("MySQL server version: %s\n", mysql_get_server_info());
? >
</body></html>
728x90

'데이터베이스 > SQL' 카테고리의 다른 글

[MySQL API] mysql_insert_id()  (0) 2011.03.03
[MySQL API] mysql_info()  (0) 2011.03.03
[MySQL API] mysql_get_proto_info()  (0) 2011.03.03
[MySQL API] mysql_get_host_info()  (0) 2011.03.03
[MySQL API] mysql_get_client_info()  (0) 2011.03.03
Comments