The question is if a database connection should be passed in by reference or by value?
For me I\'m specifically questioning a PHP to MySQL connection, but I think it
i don't really have a specific answer for php, but in general it would seem to me that you would want to pass this by reference if you are not explicitly sure that you encounter performance issues when passing by value.