I am trying to check if a database is connected in Laravel.
I've looked around the documentation and can't find anything. The closest thing I've found is this, but this doesn't solve my problem.
I have three instances of MySQL that are set up on different machines. Below is a simplified version of what I am trying to achieve.
- If database 1 is connected, save data to it
- If database 1 is not connected, check if database 2 is connected
- If database 2 is connected save data to it
- If database 2 is not connected, check if database 3 is connected
- If database 3 is connected, save data to it
To be clear, is there a way to check that a database is connected in Laravel 5.1?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…