Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: ublic Connection connection = null; public DBM() throws Exception { init(); } private void init()throws Exception{ // edit these line as your env. db_server = "DB-SERVER"; db_user = "DB-USER"; db_password = "DB-PASSWORD"; db_driver = "JDBC-DRIVER"; Class.forName(db_driver); } public Connection initConnection() throws Exception{ if( this.connection == null ){ this.connection = DriverManager.getConnection(db_server, […]
↧