Advertisement
Guest User

Untitled

a guest
Apr 5th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. private boolean isValidDBName(String dbName) {
  2. return dbName != null && !dbName.isEmpty() && dbName.startsWith("jdbc:mysql://") && dbName.endsWith("/");
  3. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement