通過JAVA操作SAE上的MY SQL資料庫

來源:互聯網
上載者:User

標籤:android   blog   http   io   ar   os   使用   java   for   

  最近著手公眾平台開發,需要用到伺服器,公司暫時還沒自己的伺服器,就只有去SAE上註冊一個,新浪給用多久就用多久。今天需要用到SAE上的MY SQL資料庫建立一個使用者資訊表,之前對伺服器、MY SQL這塊都沒接觸過,想做個功能,即使是小功能,也感覺無從下手。比如今天想建立一個使用者資訊表,就三個欄位而已,建立一個資料庫,建立一個表,迴圈加入資料就完事了,也就那麼幾個步驟,要是在android本地進行操作,就幾行代碼,十幾分鐘搞定的事。但就是由於不熟悉,搞個資料庫搞了三個多小時,現在將用到的一次基本操作總結起來,方便以後使用。註:部分知識點來自網路。

  1.資料庫建立與連結

    資料庫的建立很簡單,點擊“管理MY SQL”進行資料庫管理介面,輸入表名、欄位名稱、數值大小,點擊提交即可。

    資料庫連結:直接上代碼:

 

/** * 擷取Mysql資料庫連接 *  * @return Connection */private Connection getConn() {Connection conn = null; String dbDriver = "com.mysql.jdbc.Driver";   // 載入MySQL驅動 String dbUrl = "jdbc:mysql://w.rdc.sae.sina.com.cn:3307/app_tecsunweixin";   // app_tecsunweixin 為新浪app資料庫名稱 String dbUser = "n2xl2ozow5";           //應用首頁中的access key String dbPassword = "53whjwyzx33yw3hliw5y31jhmkzh11j054j433y2";    //應用首頁中的secret keytry {Class.forName(dbDriver);// 擷取資料庫連接conn = DriverManager.getConnection(dbUrl, dbUser, dbPassword);} catch (Exception e) {e.printStackTrace();}return conn;}

 

  2.添加資料:直接看代碼:

 

/** * 儲存使用者資訊 *  * @param request 請求對象 * @param number編號 * @param name 名字 * @param openid 加密後的名字 */public static void saveUserInfo(int number, String name, String openid) {String sql = "insert into user(number, name, openid) values (?, ?, ?)";try {Connection conn = new MySQLUtil().getConn();//取得串連PreparedStatement ps = conn.prepareStatement(sql);ps.setLong(1, number);ps.setString(2, name);ps.setString(3, openid);ps.executeUpdate();// 釋放資源ps.close();conn.close();} catch (Exception e) {e.printStackTrace();}}

 

  3.資料庫查詢:直接看代碼:

 

/** * 根據使用者名稱查詢使用者具體資訊 *  * @param name 使用者名稱 * @return UserInfo */public static UserInfo getUserInfo(String name) {UserInfo userInfo = null;String sql = "select number, name, openid from user where name=?";try {Connection conn = new MySQLUtil().getConn();PreparedStatement ps = conn.prepareStatement(sql);ps.setString(1, name);ResultSet rs = ps.executeQuery();if (rs.next()) {userInfo = new UserInfo();userInfo.setNubmer(Integer.parseInt(rs.getString("number")));userInfo.setName(rs.getString("name"));userInfo.setOpenId(rs.getString("openid"));}// 釋放資源rs.close();ps.close();conn.close();} catch (SQLException e) {e.printStackTrace();}return userInfo;}

 

  可以在SAE上對資料庫進行增刪改查操作,在資料庫管理介面點擊“瀏覽”,即可看到資料庫詳細內容:

  

通過JAVA操作SAE上的MY SQL資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.