Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: port java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class Connection_Class { String driver_ClassName="com.mysql.jdbc.Driver"; String URL_connection="jdbc:mysql://localhost:3306/vendor"; String user="root"; String password="lifesuckzz"; //can anybody explain what the following line means, especially the static part....... private static Connection_Class connectionclass=null; private Connection_Class(){ try{ Class.forName(driver_ClassName); }catch(ClassNotFoundEx Source: http://pastebin.com/raw.php?i=ntgSQtc2
↧