Created
December 3, 2019 07:40
-
-
Save mohashari/271668d7e3a1643af861bb7b606650de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package designpattern.singleton; | |
| public class DbHelper { | |
| private static Connection connection; | |
| public static Connection getConnection() { | |
| if (connection == null) | |
| connection = new Connection("localhost", "root", "root"); | |
| return connection; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment