Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

एक्लिप्स के भीतर एक MySQL डेटाबेस का उपयोग कैसे करें

यदि आपको अपने ग्रहण के अंदर किसी प्रकार के डेटा एक्सप्लोरर की आवश्यकता है, तो आप ऊपर दिए गए लिंक या विशेष रूप से प्लगइन के दस्तावेज़ीकरण को देख सकते हैं।

OTOH, यदि आप जानना चाहते हैं कि आप JDBC का उपयोग करके mysql डेटाबेस से कैसे जुड़ते हैं, तो नीचे दिया गया कोड नमूना इसकी व्याख्या करता है।

Connection connection = null;
        try {
            //Loading the JDBC driver for MySql
            Class.forName("com.mysql.jdbc.Driver");

            //Getting a connection to the database. Change the URL parameters
            connection = DriverManager.getConnection("jdbc:mysql://Server/Schema", "username", "password");

            //Creating a statement object
            Statement stmt = connection.createStatement();

            //Executing the query and getting the result set
            ResultSet rs = stmt.executeQuery("select * from item");

            //Iterating the resultset and printing the 3rd column
            while (rs.next()) {
                System.out.println(rs.getString(3));
            }
            //close the resultset, statement and connection.
            rs.close();
            stmt.close();
            connection.close();
        } catch (SQLException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. कोमाप्रिसन ऑपरेटर के लिए MySQL अजीब व्यवहार (!=/<>) यानी NotEqualTo

  2. तर्कों की एक गतिशील संख्या के साथ एक MySQL संग्रहीत फ़ंक्शन बनाएं

  3. यूनिक्स टाइमस्टैम्प बनाम डेटाटाइम

  4. Android में SQLite:विदेशी कुंजी और <तालिका बाधा> अपेक्षित

  5. MySQL में महीने का अंतिम दिन कैसे प्राप्त करें