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,027

HOME > Windows Azure > Windows Azure (Storage) and PHP Website > ตอนที่ 7 : How to use php Retrieve Entity from Table Storage - อ่านข้อมูลในตาราง



Clound SSD Virtual Server

ตอนที่ 7 : How to use php Retrieve Entity from Table Storage - อ่านข้อมูลในตาราง

ตอนที่ 7 : How to use php Retrieve Entity from Table Storage - อ่านข้อมูลในตาราง หัวข้อนี้จะเป็นการเขียน PHP เพื่ออ่านข้อมูลจาก Table Storage ของ Windows Azure ด้วยการใช้ SDK ของ Windows Azure ซึ่งจะสามารถเขียนเงื่อนไขการแสดงข้อมูลได้เหมือนกับคำสั่งของ SQL คือสามารถทำการ Filter ข้อมูลได้ตามต้องการ และข้อมูลที่ได้นั้นจะอยู่ในรูปแบบของ Array สามารถนำไปใช้งานอื่น ๆ ได้เช่น แสดงผลในหน้าจอของเว็บไซต์

Table Storage และ Azure PHP SDK

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


Syntax การ อ่านข้อมูล
	$filter = " PartitionKey eq 'myCustomer' ";
	$result = $tableRestProxy->queryEntities("customer", $filter);
เป็นการ Filter ข้อมูลเลือก PartitionKey คำว่า myCustomer (คล้าย ๆ กับการเขียน Where)

Example 1 เขียน PHP เพื่อแสดงข้อมูลจาก Table Storage ของ Windows Azure

phpAzureTable.php
<?php
require_once "WindowsAzure/WindowsAzure.php"; 
require_once 'PHPUnit\autoload.php';

use WindowsAzure\Common\ServicesBuilder;
use WindowsAzure\Common\ServiceException;

// Create Connection String
$connectionString = "DefaultEndpointsProtocol=http;AccountName=[yourAccount];AccountKey=[yourKey]";

// Create table REST proxy.
$tableRestProxy = ServicesBuilder::getInstance()->createTableService($connectionString);

$filter = " PartitionKey eq 'myCustomer' ";

try {
	 $result = $tableRestProxy->queryEntities("customer", $filter);
}
catch(ServiceException $e){
    $code = $e->getCode();
    $error_message = $e->getMessage();
}

$entities = $result->getEntities();
echo "
<table width=\"800\" border=\"1\">
  <tr>
    <th width=\"91\"> <div align=\"center\">PartitionKey </div></th>
    <th width=\"91\"> <div align=\"center\">RowKey </div></th>
    <th width=\"91\"> <div align=\"center\">CustomerID </div></th>
    <th width=\"98\"> <div align=\"center\">Name </div></th>
    <th width=\"198\"> <div align=\"center\">Email </div></th>
    <th width=\"97\"> <div align=\"center\">CountryCode </div></th>
    <th width=\"59\"> <div align=\"center\">Budget </div></th>
    <th width=\"71\"> <div align=\"center\">Used </div></th>
  </tr> ";

foreach($entities as $entity){
 echo "
  <tr>
	<td><div align=\"center\">". $entity->getPartitionKey()."</div></td>
	<td><div align=\"center\">".$entity->getRowKey()."</div></td>
    <td><div align=\"center\">".$entity->getProperty("CustomerID")->getValue()."</div></td>
    <td>".$entity->getProperty("Name")->getValue()."</td>
    <td>".$entity->getProperty("Email")->getValue()."</td>
    <td><div align=\"center\">".$entity->getProperty("CountryCode")->getValue()."</div></td>
    <td align=\"right\">".$entity->getProperty("Budget")->getValue()."</td>
    <td align=\"right\">".$entity->getProperty("Used")->getValue()."</td>
  </tr>
  ";
}
echo "</table>";
?>

Screenshot

Table Storage และ Azure PHP SDK

แสดงข้อมูลจาก Table Storage บน HTML Table








Example 2 เขียน PHP อ่านข้อมูลจาก Table Storage ของ Windows Azure แบบ Master-Detail

phpAzureTable1.php
<?php
require_once "WindowsAzure/WindowsAzure.php"; 
require_once 'PHPUnit\autoload.php';

use WindowsAzure\Common\ServicesBuilder;
use WindowsAzure\Common\ServiceException;

// Create Connection String
$connectionString = "DefaultEndpointsProtocol=http;AccountName=[yourAccount];AccountKey=[yourKey]";

// Create table REST proxy.
$tableRestProxy = ServicesBuilder::getInstance()->createTableService($connectionString);

$filter = " PartitionKey eq 'myCustomer' ";

try {
	 $result = $tableRestProxy->queryEntities("customer", $filter);
}
catch(ServiceException $e){
    $code = $e->getCode();
    $error_message = $e->getMessage();
}

$entities = $result->getEntities();
echo "
<table width=\"800\" border=\"1\">
  <tr>
    <th width=\"91\"> <div align=\"center\">PartitionKey </div></th>
    <th width=\"91\"> <div align=\"center\">RowKey </div></th>
    <th width=\"91\"> <div align=\"center\">CustomerID </div></th>
    <th width=\"98\"> <div align=\"center\">Name </div></th>
    <th width=\"198\"> <div align=\"center\">Email </div></th>
    <th width=\"97\"> <div align=\"center\">CountryCode </div></th>
    <th width=\"59\"> <div align=\"center\">Budget </div></th>
    <th width=\"71\"> <div align=\"center\">Used </div></th>
    <th width=\"71\"> <div align=\"center\">Detail </div></th>
  </tr> ";

foreach($entities as $entity){
 echo "
  <tr>
	<td><div align=\"center\">". $entity->getPartitionKey()."</div></td>
	<td><div align=\"center\">".$entity->getRowKey()."</div></td>
    <td><div align=\"center\">".$entity->getProperty("CustomerID")->getValue()."</div></td>
    <td>".$entity->getProperty("Name")->getValue()."</td>
    <td>".$entity->getProperty("Email")->getValue()."</td>
    <td><div align=\"center\">".$entity->getProperty("CountryCode")->getValue()."</div></td>
    <td align=\"right\">".$entity->getProperty("Budget")->getValue()."</td>
    <td align=\"right\">".$entity->getProperty("Used")->getValue()."</td>
    <td align=\"center\"><a href='phpAzureTable2.php?CusID=".$entity->getProperty("CustomerID")->getValue()."'>View</a></td>
  </tr>
  ";
}
echo "</table>";
?>

phpAzureTable2.php
<?php
require_once "WindowsAzure/WindowsAzure.php"; 
require_once 'PHPUnit\autoload.php';

use WindowsAzure\Common\ServicesBuilder;
use WindowsAzure\Common\ServiceException;

// Create Connection String
$connectionString = "DefaultEndpointsProtocol=http;AccountName=[yourAccount];AccountKey=[yourKey]";

// Create table REST proxy.
$tableRestProxy = ServicesBuilder::getInstance()->createTableService($connectionString);

try {
	 $result = $tableRestProxy->getEntity("customer", "myCustomer", $_GET["CusID"]);
}
catch(ServiceException $e){
    $code = $e->getCode();
    $error_message = $e->getMessage();
}

$entity = $result->getEntity();
 ?>
 <table width="329" border="1">
  <tr>
    <td width="118">PartitionKey</td>
    <td width="195"><?php echo $entity->getPartitionKey()?></td>
  </tr>
  <tr>
    <td>RowKey</td>
    <td><?php echo $entity->getRowKey();?></td>
  </tr>
  <tr>
    <td>CustomerID</td>
    <td><?php echo $entity->getProperty("CustomerID")->getValue();?></td>
  </tr>
  <tr>
    <td>Name</td>
    <td><?php echo $entity->getProperty("Name")->getValue();?></td>
  </tr>
  <tr>
    <td>Email</td>
    <td><?php echo $entity->getProperty("Email")->getValue();?></td>
  </tr>
  <tr>
    <td>CountryCode</td>
    <td><?php echo $entity->getProperty("CountryCode")->getValue();?></td>
  </tr>
  <tr>
    <td>Budget</td>
    <td><?php echo $entity->getProperty("Budget")->getValue();?></td>
  </tr>
  <tr>
    <td>Used</td>
    <td><?php echo $entity->getProperty("Used")->getValue();?></td>
  </tr>
</table>

Screenshot

Table Storage และ Azure PHP SDK

แสดงข้อมูลจาก Table Storage และคลิกเพื่อแสดงรายละเอียด

Table Storage และ Azure PHP SDK

แสดงรายละเอียดข้อมูลที่เลือกในรูปแบบของ Master-Detail

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









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


   
Share


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


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


   


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

 
ตอนที่ 1 : รู้จักกับ Blob Storage และ Azure PHP SDK การใช้งานเบื้องต้น
Rating :

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

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

 
ตอนที่ 4 : How to use php Delete Blob การลบรายการไฟล์บน Blob
Rating :

 
ตอนที่ 5 : รู้จักกับ Table Storage Service และ Azure PHP SDK การใช้งานเบื้องต้น
Rating :

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

 
ตอนที่ 8 : How to use php Update Entity in Table Storage - แก้ไขข้อมูลในตาราง
Rating :

 
ตอนที่ 9 : How to use php Delete Entity in Table Storage - ลบข้อมูลในตาราง
Rating :

 
ตอนที่ 10 : รู้จักกับ Queue Storage และ Azure PHP SDK การใช้งานเบื้องต้น
Rating :

 
ตอนที่ 11 : How to use php Create a message Queue - สร้างคิวใหม่
Rating :

 
ตอนที่ 12 : How to use php Peek at the next message - อ่านคิวถัดไป
Rating :

 
ตอนที่ 13 : How to use php 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 03
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 อัตราราคา คลิกที่นี่