Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,025

HOME > Windows Azure > Windows Azure (Storage) and Java Application > ตอนที่ 10 : How to use Java (JSP) Update Entity in Table Storage - แก้ไขข้อมูลในตาราง



Clound SSD Virtual Server

ตอนที่ 10 : How to use Java (JSP) Update Entity in Table Storage - แก้ไขข้อมูลในตาราง

ตอนที่ 10 : How to use Java (JSP) Update Entity in Table Storage - แก้ไขข้อมูลในตาราง บทความนี้จะเป็นตัวอย่างการเขียน Java (JSP) กับ Table Storage บน Windows Azure โดยจะเป็นรูปแบบการแก้ไข Entity หรือแก้ไขข้อมูลใน Table Storage ซึ่งใน Concept การจัดเก็บนั้นเราจะสามารถที่จะแก้ไข Update ได้เหมือนกับ Table แบบ Rows คือเลือกที่จะ Update ในแต่ล่ะฟิวด์ของข้อมูลได้ โดยในตัวอย่างนี้จะแบ่งเป็น Step การแสดงข้อมูล การเลือกข้อมูลที่จะแก้ไขและ Update แสดงบน Form เพื่อให้ User ทำการแก้ไขข้อมูลต่าง ๆ ที่ต้องการ จากนั้นก็เป็นการบันทึกการแก้ไขไปยัง Table Storage บน Windows Azure

How to use Java (JSP) Update Entity in Table Storage

ข้อมูล Table Storage ที่อยู่บน Windows Azure


CustomerEntity.java เป็น Model Class สำหรับการเชื่อมต่อกับ Table Storage
package com.java.myapp;

import com.microsoft.windowsazure.services.table.client.*;

public class CustomerEntity extends TableServiceEntity {
    public CustomerEntity(String pKey, String rKey) {
        this.partitionKey = pKey;
        this.rowKey = rKey;
    }

    public CustomerEntity() { }

    String CustomerID;
    String Name;
    String Email;
    String CountryCode;
    String Budget;
    String Used;

    public String getCustomerID() {
        return this.CustomerID;
    }
    public void setCustomerID(String sCustomerID) {
        this.CustomerID = sCustomerID;
    }
    
    public String getName() {
        return this.Name;
    }
    public void setName(String sName) {
        this.Name = sName;
    }
    
    public String getEmail() {
        return this.Email;
    }
    public void setEmail(String sEmail) {
        this.Email = sEmail;
    }
    
    public String getCountryCode() {
        return this.CountryCode;
    }
    public void setCountryCode(String sCountryCode) {
        this.CountryCode = sCountryCode;
    }
    
    public String getBudget() {
        return this.Budget;
    }
    public void setBudget(String sBudget) {
        this.Budget = sBudget;
    }
    
    public String getUsed() {
        return this.Used;
    }
    public void setUsed(String sUsed) {
        this.Used = sUsed;
    } 


}


Syntax การ Update ข้อมูล
 	// Retrieve the entity with partition key of "myCustomer" and row key of "CustomerID".
    TableOperation retrieveData = 
        TableOperation.retrieve("myCustomer", strCustomerID, CustomerEntity.class);

    // Submit the operation to the table service and get the specific entity.
    CustomerEntity specificEntity =
        tableClient.execute("customer", retrieveData).getResultAsType();
	
	// Specify a new Data Data
    specificEntity.setName(strName);
    specificEntity.setEmail(strEmail);
    specificEntity.setCountryCode(strCountryCode);
    specificEntity.setBudget(strBuget);
    specificEntity.setUsed(strUsed);

    // Create an operation to replace the entity.
    TableOperation replaceEntity = TableOperation.replace(specificEntity);

    // Submit the operation to the table service.
    tableClient.execute("customer", replaceEntity);

เป็นการ Update ข้อมูลใน Table Storage โดยในขั้นแรกจะต้อง Filter เลือกข้อมูลที่จะ Update ซะก่อน








Example เขียน Java (JSP) เพื่อ Update แก้ไขข้อมูล Table Storage บน Windows Azure

index.jsp (ไฟล์สำหรับแสดงรายการข้อมูลทั้งหมด และ สามารถเลือกรายการที่จะทำการแก้ไขได้)
<%@ page import="com.microsoft.windowsazure.services.core.storage.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.TableQuery.*" %>
<%@ page import="com.java.myapp.CustomerEntity" %>

<html>
<head>
	<title>ThaiCreate.Com Azure Tutorial</title>
</head>
<body>
	<%
	
	String storageConnectionString = 
    "DefaultEndpointsProtocol=http;" + 
    "AccountName=[yourAccount];" + 
    "AccountKey=[yourKey]";
    
 	// Retrieve storage account from connection-string
    CloudStorageAccount storageAccount = CloudStorageAccount.parse(storageConnectionString);
 	
 	// Create the table client.
    CloudTableClient tableClient = storageAccount.createCloudTableClient();	
    
    // Specify a partition query, using "Smith" as the partition key filter.
    TableQuery<CustomerEntity> partitionQuery =
        TableQuery.from("customer", CustomerEntity.class);

    // Loop through the results, displaying information about the entity.
   	out.print("<table width=\"800\" border=\"1\">");
   	out.print("<tr>");
   	out.print("<th width=\"91\"> <div align=\"center\">PartitionKey </div></th>");
   	out.print("<th width=\"91\"> <div align=\"center\">RowKey </div></th>");
   	out.print("<th width=\"91\"> <div align=\"center\">CustomerID </div></th>");
   	out.print("<th width=\"98\"> <div align=\"center\">Name </div></th>");
   	out.print("<th width=\"198\"> <div align=\"center\">Email </div></th>");
   	out.print("<th width=\"97\"> <div align=\"center\">CountryCode </div></th>");
   	out.print("<th width=\"59\"> <div align=\"center\">Budget </div></th>");
   	out.print("<th width=\"71\"> <div align=\"center\">Used </div></th>");
   	out.print("<th width=\"71\"> <div align=\"center\">Edit </div></th>");
   	out.print("</tr>"); 
  
	   for (CustomerEntity entity : tableClient.execute(partitionQuery)) {
		   	out.print("<tr>");
		   	out.print("<td><div align=\"center\">" + entity.getPartitionKey() + "</div></td>");
		   	out.print("<td><div align=\"center\">" + entity.getRowKey() + "</div></td>");
		   	out.print("<td><div align=\"center\">" + entity.getCustomerID() + "</div></td>");
		   	out.print("<td>" + entity.getName() + "</td>");
		   	out.print("<td>" + entity.getEmail() + "</td>");
		   	out.print("<td><div align=\"center\">" + entity.getCountryCode() + "</div></td>");
		   	out.print("<td align=\"right\">" + entity.getBudget() + "</td>");
		   	out.print("<td align=\"right\">" + entity.getUsed() + "</td>");
		   	out.print("<td align=\"center\"><a href='update.jsp?CusID=" + entity.getCustomerID() + "'>Edit</a></td>");
		   	out.print("</tr>");
	   }
    
  	 out.print("</table>");
	%>
</body>
</html>

update.jsp (ไฟล์สำหรับเป็น Form ในการรับข้อมูลที่จะแก้ไข)
<%@ page import="com.microsoft.windowsazure.services.core.storage.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.TableQuery.*" %>
<%@ page import="com.java.myapp.CustomerEntity" %>

<html>
<head>
	<title>ThaiCreate.Com Azure Tutorial</title>
</head>
<body>
	<%
	
	String storageConnectionString = 
    "DefaultEndpointsProtocol=http;" + 
    "AccountName=[yourAccount];" + 
    "AccountKey=[yourKey]";
    
 	// Retrieve storage account from connection-string
    CloudStorageAccount storageAccount = CloudStorageAccount.parse(storageConnectionString);
 	
 	// Create the table client.
    CloudTableClient tableClient = storageAccount.createCloudTableClient();	
 	
	// Get Param
    String strCusID = request.getParameter("CusID");
    
 	// Create a filter condition where the row key is "CusID".
    String rowFilter = TableQuery.generateFilterCondition(
        TableConstants.ROW_KEY, 
        QueryComparisons.EQUAL,
        strCusID);

    // Specify a partition query, using "Smith" as the partition key filter.
    TableQuery<CustomerEntity> rowQuery =
        TableQuery.from("customer", CustomerEntity.class)
        .where(rowFilter);
    
    for (CustomerEntity entity : tableClient.execute(rowQuery)) {
	%>
	
	 <form action="save.jsp?CusID=<%=entity.getCustomerID()%>" name="frmEdit" method="post">
	 <table width="329" border="1">
	  <tr>
	    <td width="118">PartitionKey</td>
	    <td width="195"><%=entity.getPartitionKey()%></td>
	  </tr>
	  <tr>
	    <td>RowKey</td>
	    <td><%=entity.getRowKey()%></td>
	  </tr>
	  <tr>
	    <td>CustomerID</td>
	    <td><%=entity.getCustomerID()%></td>
	  </tr>
	  <tr>
	    <td>Name</td>
	    <td><input type="text" name="txtName" size="20" value="<%=entity.getName()%>"></td>
	  </tr>
	  <tr>
	    <td>Email</td>
	    <td><input type="text" name="txtEmail" size="20" value="<%=entity.getEmail()%>"></td>
	  </tr>
	  <tr>
	    <td>CountryCode</td>
	    <td><input type="text" name="txtCountryCode" size="2" value="<%=entity.getCountryCode()%>"></td>
	  </tr>
	  <tr>
	    <td>Budget</td>
	    <td><input type="text" name="txtBudget" size="5" value="<%=entity.getBudget()%>"></td>
	  </tr>
	  <tr>
	    <td>Used</td>
	    <td><input type="text" name="txtUsed" size="5" value="<%=entity.getUsed()%>"></td>
	  </tr>
	</table>
	<br>
	<input type="submit" name="submit" value="submit">
	</form>
		
	<%
	}
	%>
</body>
</html>

save.jsp (ไฟล์สำหรับทำการ Update แก้ไขข้อมูล)
<%@ page import="com.microsoft.windowsazure.services.core.storage.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.TableQuery.*" %>
<%@ page import="com.java.myapp.CustomerEntity" %>

<html>
<head>
	<title>ThaiCreate.Com Azure Tutorial</title>
</head>
<body>
	<%
	
	String storageConnectionString = 
    "DefaultEndpointsProtocol=http;" + 
    "AccountName=[yourAccount];" + 
    "AccountKey=[yourKey]";
    
 	// Retrieve storage account from connection-string
    CloudStorageAccount storageAccount = CloudStorageAccount.parse(storageConnectionString);
 	
 	// Create the table client.
    CloudTableClient tableClient = storageAccount.createCloudTableClient();	
 	
	// Get Param
    String strCustomerID = request.getParameter("CusID");

    String strName = request.getParameter("txtName");
    String strEmail = request.getParameter("txtEmail");
    String strCountryCode = request.getParameter("txtCountryCode");
    String strBuget = request.getParameter("txtBudget");
    String strUsed = request.getParameter("txtUsed");
    

 	// Retrieve the entity with partition key of "myCustomer" and row key of "CustomerID".
    TableOperation retrieveData = 
        TableOperation.retrieve("myCustomer", strCustomerID, CustomerEntity.class);

    // Submit the operation to the table service and get the specific entity.
    CustomerEntity specificEntity =
        tableClient.execute("customer", retrieveData).getResultAsType();
	
	// Specify a new Data Data
    specificEntity.setName(strName);
    specificEntity.setEmail(strEmail);
    specificEntity.setCountryCode(strCountryCode);
    specificEntity.setBudget(strBuget);
    specificEntity.setUsed(strUsed);

    // Create an operation to replace the entity.
    TableOperation replaceEntity = TableOperation.replace(specificEntity);

    // Submit the operation to the table service.
    tableClient.execute("customer", replaceEntity);

    // Redirect to index.jsp
    response.sendRedirect("index.jsp");
	%>
</body>
</html>

Screenshot

How to use Java (JSP) Update Entity in Table Storage

แสดงรายการข้อมูลจาก Table Storage ให้เลือกรายการที่ต้องการ Update

How to use Java (JSP) Update Entity in Table Storage

แสดงข้อมูลบน Form ที่จะ Update เราจะทดสอบการแก้ไขค่า Used ซึ่งปัจจุบันเป็น 60000

How to use Java (JSP) Update Entity in Table Storage

แก้ไขเป็นยอดใหม่ 90000 และเลือก Submit เพื่อทำการแก้ไขข้อมูล

How to use Java (JSP) Update Entity in Table Storage

แก้ไขข้อมูลเรียบร้อยแล้ว ข้อมูลจะมีการ Update ทันที

How to use Java (JSP) Update Entity in Table Storage

เมื่อเข้าไปดูใน Table Storage บน Windows Azure ผ่านโปรแกรม Azure Storage Explorer ข้อมูลจะมีการแก้ไข Update ตามที่เราแก้ไขไปก่อนหน้านี้

How to use Java (JSP) Update Entity in Table Storage

รายการที่ถูก Update








บทความที่เกี่ยวข้อง

บทความถัดไปที่แนะนำให้อ่าน


   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2013-11-30 08:28:35 / 2017-03-24 14:21:17
  Download : No files
 Sponsored Links / Related

 
ตอนที่ 1 : รู้จักกับ Windows Azure และ Azure Java SDK สำหรับภาษา Java
Rating :

 
ตอนที่ 2 : Config Eclipse กับ Apache Tomcat ไว้เขียน JSP กับ Windows Azure
Rating :

 
ตอนที่ 3 : รู้จักกับ Blob Storage และการเขียนร่วมกับภาษา Azure for Java Application
Rating :

 
ตอนที่ 4 : How to use Java (JSP) Upload file to Blob การอัพโหลดไฟล์ลงใน Blob
Rating :

 
ตอนที่ 5 : How to use Java (JSP) List the Blobs การแสดงรายการไฟล์จาก Blob
Rating :

 
ตอนที่ 6 : How to use Java (JSP) Delete Blob การลบรายการไฟล์บน Blob
Rating :

 
ตอนที่ 7 : รู้จักกับ Table Storage Service และการเขียนร่วมกับภาษา Java Application
Rating :

 
ตอนที่ 8 : How to use Java (JSP) Add Entity to a Table Storage - บันทึกข้อมูลลงตาราง
Rating :

 
ตอนที่ 9 : How to use Java (JSP) Retrieve Entity from Table Storage - อ่านข้อมูลในตาราง
Rating :

 
ตอนที่ 11 : How to use Java (JSP) Delete Entity in Table Storage - ลบข้อมูลในตาราง
Rating :

 
ตอนที่ 12 : รู้จักกับ Queue Storage และการเขียนร่วมกับภาษา Java Application
Rating :

 
ตอนที่ 13 : How to use Java (JSP) Create a message Queue - สร้างคิวใหม่
Rating :

 
ตอนที่ 14 : How to use Java (JSP) Peek at the next message - อ่านคิวถัดไป
Rating :

 
ตอนที่ 15 : How to use Java (JSP) De-queue the next messag - ขยับไปยังคิวถัดไป
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่