How Can we permanently define user-defined variable for a client in MySQL?



In MySQL, it is not possible that a client can hold user variable permanently. It is because all the variables for a given client connection are automatically freed when that client exits.


Advertisements