i'm a bit confused by mysql concepts: session vs connection.

when we are talking about connecting to mysql. we use connection terminology, as well as connection pool and etc.

however let's go to mysql online doc: http://dev.mysql.com/doc/refman/4.1/en/server-system-variables.html. it talks about session variables.

they are quite similar. how to distinguish them?

thanks in advance.

link|improve this question
feedback

1 Answer

A session is just a result of a successful connection. Any MySQL client requires some connection settings to establish a connection and after the connection has been established it acquires a connection id (thread id) and some context which is called session.

link|improve this answer
if connection is idle too long, client try to reestablish it. a new session is initialized with a new set of session variables, right? – Xiaofeng Tang Jan 10 at 9:43
@xiaofeng-tang, correct, all user-defined variables will be NULLed, session variables will reset to defaults and temporary tables will be lost. – newtover Jan 10 at 10:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.