有點多請耐心看完。
成都創(chuàng)新互聯(lián)長期為成百上千家客戶提供的網(wǎng)站建設服務,團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為江城企業(yè)提供專業(yè)的成都做網(wǎng)站、成都網(wǎng)站建設,江城網(wǎng)站改版等技術(shù)服務。擁有十年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
希望能幫助你,還請及時采納謝謝。
一.前言
android連接數(shù)據(jù)庫的方式有兩種,第一種是通過連接服務器,再由服務器讀取數(shù)據(jù)庫來實現(xiàn)數(shù)據(jù)的增刪改查,這也是我們常用的方式。第二種方式是android直接連接數(shù)據(jù)庫,這種方式非常耗手機內(nèi)存,而且容易被反編譯造成安全隱患,所以在實際項目中不推薦使用。
二.準備工作
1.加載外部jar包
在Android工程中要使用jdbc的話,要導入jdbc的外部jar包,因為在Java的jdk中并沒有jdbc的api,我使用的jar包是mysql-connector-java-5.1.18-bin.jar包,網(wǎng)絡上有使用mysql-connector-java-5.1.18-bin.jar包的,自己去用的時候發(fā)現(xiàn)不兼容,所以下載了比較新版本的,jar包可以去官網(wǎng)下載,也可以去百度,有很多前人們上傳的。
2.導入jar包的方式
方式一:
可以在項目的build.gradle文件中直接添加如下語句導入
compile files('libs/mysql-connector-java-5.1.18-bin.jar')
方式二:下載jar包復制到項目的libs目錄下,然后右鍵復制過來的jar包Add as libs
三.建立數(shù)據(jù)庫連接
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_jdbc);
new Thread(runnable).start();
}
Handler myHandler=new Handler(){
public void handleMessage(Message msg) {
// TODO Auto-generated method stub
super.handleMessage(msg);
Bundle data=new Bundle();
data=msg.getData();
//System.out.println("id:"+data.get("id").toString()); //輸出第n行,列名為“id”的值
Log.e("TAG","id:"+data.get("id").toString());
TextView tv= (TextView) findViewById(R.id.jdbc);
//System.out.println("content:"+data.get("content").toString());
}
};
Runnable runnable=new Runnable() {
private Connection con = null;
@Override
public void run() {
// TODO Auto-generated method stub
try {
Class.forName("com.mysql.jdbc.Driver");
//引用代碼此處需要修改,address為數(shù)據(jù)IP,Port為端口號,DBName為數(shù)據(jù)名稱,UserName為數(shù)據(jù)庫登錄賬戶,Password為數(shù)據(jù)庫登錄密碼
con =
//DriverManager.getConnection("jdbc:mysql://192.168.1.202:3306/b2b", "root", "");
DriverManager.getConnection("jdbc:mysql://",
UserName,Password);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
testConnection(con); //測試數(shù)據(jù)庫連接
} catch (java.sql.SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void testConnection(Connection con1) throws java.sql.SQLException {
try {
String sql = "select * from ecs_users"; //查詢表名為“oner_alarm”的所有內(nèi)容
Statement stmt = con1.createStatement(); //創(chuàng)建Statement
ResultSet rs = stmt.executeQuery(sql); //ResultSet類似Cursor
//codeResultSet/code最初指向第一行
Bundle bundle=new Bundle();
while (rs.next()) {
bundle.clear();
bundle.putString("id",rs.getString("userid"));
//bundle.putString("content",rs.getString("content"));
Message msg=new Message();
msg.setData(bundle);
myHandler.sendMessage(msg);
}
rs.close();
stmt.close();
} catch (SQLException e) {
} finally {
if (con1 != null)
try {
con1.close();
} catch (SQLException e) {}
}
}
};
注意:
在Android4.0之后,不允許在主線程中進行比較耗時的操作(連接數(shù)據(jù)庫就屬于比較耗時的操作),需要開一個新的線程來處理這種耗時的操作,沒新線程時,一直就是程序直接退出,開了一個新線程處理直接,就沒問題了。
當然,連接數(shù)據(jù)庫是需要網(wǎng)絡的,千萬別忘了添加訪問網(wǎng)絡權(quán)限:
uses-permission android:name=”android.permission.INTERNET”/
四.bug點
1.導入的jar包一定要正確
2.連接數(shù)據(jù)庫一定要開啟新線程
3.數(shù)據(jù)庫的IP一定要是可以ping通的,局域網(wǎng)地址手機是訪問不了的
4.數(shù)據(jù)庫所在的服務器是否開了防火墻,阻止了訪問
————————————————
版權(quán)聲明:本文為CSDN博主「shuaiyou_comon」的原創(chuàng)文章,遵循CC 4.0 BY-SA版權(quán)協(xié)議,轉(zhuǎn)載請附上原文出處鏈接及本聲明。
原文鏈接:
一、首先要加載JDBC驅(qū)動包。
步驟:右擊項目找到build path-configure build path-libraries——add External JARs添加驅(qū)動包
二、寫測試類:TestCon.java
(在此之前,首先
1.在自己的電腦上Mysql下確定賬戶是"root",密碼是"123456";
2.進入賬戶,創(chuàng)建數(shù)據(jù)庫cui;
3.在數(shù)據(jù)庫cui下面,創(chuàng)建表test1 包含_id(int 類型自動增加) username(String 類型)、password(String 類型);
4.在表中插入數(shù)據(jù),以便顯示
)
1 package com.test.an;
2
3 import java.sql.Connection;
4 import java.sql.DriverManager;
5 import java.sql.PreparedStatement;
6 import java.sql.ResultSet;
7 import java.sql.SQLException;
8
9
10 public class TestCon1{
11 public static void main(String[] args)
12 {
13 Connection con = null;
14 String sql;
15 PreparedStatement pre;
16 ResultSet rs;
17
18 try {
19 String driver="com.mysql.jdbc.Driver";
20 Class.forName(driver);
21
22 String url="jdbc:mysql://localhost:3306/cuiuseUnicode=truecharacterEncoding=latin1";//utf-8也行
23 con = DriverManager.getConnection(url, "root", "123456");
24
25 sql = "select _id,username,password from test1" ;
26 pre = con.prepareStatement(sql);
27
28 rs = pre.executeQuery();
29 while(rs.next()){
30 int id = rs.getInt(1);
31 String username = rs.getString(2);
32 String password = rs.getString(3);
33
34 System.out.println("id="+id+";username="+username+";password="+password);
35 }
36 con.close();
37 } catch (SQLException e) {
38 e.printStackTrace();
39 } catch (ClassNotFoundException e) {
40 e.printStackTrace();
41 }
42
43 }
44
45 }
運行結(jié)果:
id=1;username=ccc;password=123456
id=2;username=xxx;password=654321
id=3;username=ddd;password=123456
id=4;username=ddf÷;password=yyt
id=5;username=cuixiaodong;password=cxd
id=6;username=vv;password=cxd
1、打開Tableau軟件。
2、在連接中,找到紅框位置的MySQL,點擊開始連接Mysql。
3、在彈出的連接界面,輸入Mysql服務器地址、端口、用戶名、密碼。
4、輸入完成后,點擊紅框位置 確認 進行連接。
5、此時已經(jīng)連接到MySQL服務器上,為了測試 我們點擊紅框位置 選擇數(shù)據(jù)庫查看一下。
如果mysql支持iPhone話,當然可以,不過一般是把mysql放在后臺用吧。iPhone通過網(wǎng)絡訪問后臺的接口,讓后臺來調(diào)用mysql.
手機是不能直接去連接你服務器的mysql數(shù)據(jù)庫
請在你的服務端寫代碼去連接mysql數(shù)據(jù)吧
Mysql連接方法
1. 加載數(shù)據(jù)庫驅(qū)動:?Class.forName("org.gjt.mm.mysql.Driver"); //加載數(shù)據(jù)庫驅(qū)動
String url = "jdbc:mysql://localhost:3306/test";
String user = "root";
String passowrd = "123456";
2. 獲取數(shù)據(jù)庫連接Connection con數(shù)=?DriverManager.getConnection(url,user,password)
3. 獲取SQL執(zhí)行器 PreparedStatement prepare = con.prepareStatement("SQL語句")
4. 執(zhí)行SQL語句,得到結(jié)果集 ResultSet result = prepare.executeQuery();
while(result.next()){
//讀取結(jié)果
}
最后不要忘記導入jdbc驅(qū)動包
純工手打字,請采納哈
用Android程序去直連MySQL數(shù)據(jù)庫,覺得這樣做不好,出于安全等方面考慮。數(shù)據(jù)庫地址,用戶名密碼,查詢SQL什么的都存在程序里,很容易被反編譯等方法看到。
建議把表示層和數(shù)據(jù)層邏輯分開,數(shù)據(jù)層對應網(wǎng)頁的表示層提供接口,同時在為Android手機端提供一個接口,簡介訪問數(shù)據(jù)庫,這接口可以2端都保持一致,比如XML+RPC或者json等等,Android端也有現(xiàn)成的東西能直接用,既安全又省事。
android 鏈接mysql數(shù)據(jù)庫實例:
package com.hl;
import java.sql.DriverManager;
import java.sql.ResultSet;
import com.mysql.jdbc.Connection;
import com.mysql.jdbc.Statement;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class AndroidMsql extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btn=(Button)findViewById(R.id.btn);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
sqlCon();
}
});
}
private void mSetText(String str){
TextView txt=(TextView)findViewById(R.id.txt);
txt.setText(str);
}
private void sqlCon(){
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (Exception e) {
e.printStackTrace();
}
try {
String url ="jdbc:mysql://192.168.142.128:3306/mysql?user=zzfeihuapassword=12345useUnicode=truecharacterEncoding=UTF-8";//鏈接數(shù)據(jù)庫語句
Connection conn= (Connection) DriverManager.getConnection(url); //鏈接數(shù)據(jù)庫
Statement stmt=(Statement) conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from user";//查詢user表語句
ResultSet rs=stmt.executeQuery(sql);//執(zhí)行查詢
StringBuilder str=new StringBuilder();
while(rs.next()){
str.append(rs.getString(1)+"\n");
}
mSetText(str.toString());
rs.close();