Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mysql_thread_id(3) [php man page]

MYSQL_THREAD_ID(3)							 1							MYSQL_THREAD_ID(3)

mysql_thread_id - Return the current thread ID

SYNOPSIS
Warning This extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide and related FAQ for more information. Alternatives to this function include: omysqli_thread_id(3) int mysql_thread_id ([resource $link_identifier = NULL]) DESCRIPTION
Retrieves the current thread ID. If the connection is lost, and a reconnect with mysql_ping(3) is executed, the thread ID will change. This means only retrieve the thread ID when needed. o $ link_identifier -The MySQL connection. If the link identifier is not specified, the last link opened by mysql_connect(3) is assumed. If no such link is found, it will try to create one as if mysql_connect(3) was called with no arguments. If no connection is found or established, an E_WARNING level error is generated. The thread ID on success or FALSE on failure. Example #1 mysql_thread_id(3) example <?php $link = mysql_connect('localhost', 'mysql_user', 'mysql_password'); $thread_id = mysql_thread_id($link); if ($thread_id){ printf("current thread id is %d ", $thread_id); } ?> The above example will output something similar to: current thread id is 73 mysql_ping(3), mysql_list_processes(3). PHP Documentation Group MYSQL_THREAD_ID(3)

Check Out this Related Man Page

MYSQL_CLIENT_ENCODING(3)						 1						  MYSQL_CLIENT_ENCODING(3)

mysql_client_encoding - Returns the name of the character set

SYNOPSIS
Warning This extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide and related FAQ for more information. Alternatives to this function include: omysqli_character_set_name(3) string mysql_client_encoding ([resource $link_identifier = NULL]) DESCRIPTION
Retrieves the character_set variable from MySQL. o $ link_identifier -The MySQL connection. If the link identifier is not specified, the last link opened by mysql_connect(3) is assumed. If no such link is found, it will try to create one as if mysql_connect(3) was called with no arguments. If no connection is found or established, an E_WARNING level error is generated. Returns the default character set name for the current connection. Example #1 mysql_client_encoding(3) example <?php $link = mysql_connect('localhost', 'mysql_user', 'mysql_password'); $charset = mysql_client_encoding($link); echo "The current character set is: $charset "; ?> The above example will output something similar to: The current character set is: latin1 mysql_set_charset(3), mysql_real_escape_string(3). PHP Documentation Group MYSQL_CLIENT_ENCODING(3)
Man Page

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

combine 2 lines

Moderator, kindly delete this thread because I already found what I needed... thanks. (0 Replies)
Discussion started by: Deanne
0 Replies

2. Post Here to Contact Site Administrators and Moderators

new thread link in home page

Sir, I want to post a new thread but I am not able to find a new thread link anywhere in the home page. Every time i used to go to new post and selecting contact administrator after that there is a link for new thread is it the right method. (1 Reply)
Discussion started by: salaathi
1 Replies

3. UNIX and Linux Applications

What Database engine would you recommend?

Thank you for choosing this thread to read. I am about to develop a heavy set financial system. My client wants to build his own in-house. Due to my LAMP/BSD mind set, I know MySQL, but no other database (never got the chance to see others). I do not know if MySQL can handle 2000 to 5000 records... (3 Replies)
Discussion started by: sad_angle
3 Replies

4. UNIX for Dummies Questions & Answers

Grep

removed the link and i got the information i needed (6 Replies)
Discussion started by: Amit Sura
6 Replies

5. UNIX for Dummies Questions & Answers

for statement

removed the link due to some issues and i got the information i needed (4 Replies)
Discussion started by: Amit Sura
4 Replies

6. Programming

creating multiple threads using single thread id

Hi all, Can I create multiple threads using single thread_id like pthread_t thread_id; pthread_create(&thread_id, NULL, &print_xs, NULL); pthread_create(&thread_id, NULL, &print_ys, NULL); pthread_create(&thread_id, NULL, &print_zs, NULL); pthread_join(thread_id, NULL); what... (2 Replies)
Discussion started by: zing_foru
2 Replies

7. Post Here to Contact Site Administrators and Moderators

Broken Links in the Site Link Directory

(split from another thread) Hi. Can you please post a copy of the exact link you used? I have no trouble accessing either the readme, or the link to "Featured Books and Articles by Active Forum Members - Links" Thanks. (2 Replies)
Discussion started by: Scott
2 Replies

8. Shell Programming and Scripting

Bash FPATH code update

In this post at 302451613-post2.html the link to the code comes up not found. The thread is closed, so I was unable to ask on the thread itself and I do not have enough posts yet to send a private message (or write out a proper html link). Does the author (jim mcanamara) have an updated link? ... (2 Replies)
Discussion started by: matthewpersico
2 Replies