Mysql
 sql >> база данни >  >> RDS >> Mysql

Как приложенията за Android имат достъп до MySQL?

В android техният е помощен клас, който има родителски клас Sqlite, който има всички членове на данните и функции за достъп до този клас. Чрез този клас можете да четете, пишете и отваряте данни. За да научите повече за това, прочетете тази връзка

http://www.codeproject.com/Articles/119293/Using-SQLite-Database-with-Android

За да се свържете с база данни, ви е необходим обект Connection. Обектът Connection използва DriverManager. DriverManager предава вашето потребителско име, парола и местоположението на базата данни.

Добавете тези три оператора за импортиране в горната част на кода си:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

За да настроите връзка с база данни, кодът е следният:

Connection con = DriverManager.getConnection( host, username, password );

Вижте този пример

try (
         // Step 1: Allocate a database "Connection" object
         Connection conn = DriverManager.getConnection(
               "jdbc:mysql://localhost:8888/ebookshop", "myuser", "xxxx"); // MySQL
//       Connection conn = DriverManager.getConnection(
//             "jdbc:odbc:ebookshopODBC");  // Access

         // Step 2: Allocate a "Statement" object in the Connection
         Statement stmt = conn.createStatement();
      ) {
         // Step 3: Execute a SQL SELECT query, the query result
         //  is returned in a "ResultSet" object.
         String strSelect = "select title, price, qty from books";
         System.out.println("The SQL query is: " + strSelect); // Echo For debugging
         System.out.println();

         ResultSet rset = stmt.executeQuery(strSelect);

         // Step 4: Process the ResultSet by scrolling the cursor forward via next().
         //  For each row, retrieve the contents of the cells with getXxx(columnName).
         System.out.println("The records selected are:");
         int rowCount = 0;
         while(rset.next()) {   // Move the cursor to the next row
            String title = rset.getString("title");
            double price = rset.getDouble("price");
            int    qty   = rset.getInt("qty");
            System.out.println(title + ", " + price + ", " + qty);
            ++rowCount;
         }
         System.out.println("Total number of records = " + rowCount);

      } catch(SQLException ex) {
         ex.printStackTrace();
      }
      // Step 5: Close the resources - Done automatically by try-with-resources
   }


  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 (включително първичните ключове)

  2. Как да вземете входове от динамично създадено текстово поле на php и да ги съхраните в MySQL с помощта на цикъл?

  3. Как мога да прилагам привилегии във форума

  4. Създайте MySQL съхранена функция с динамичен брой аргументи

  5. MySQL - Направете съществуващо поле уникално