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 > ตอนที่ 5 : รู้จักกับ Table Storage Service และ Azure PHP SDK การใช้งานเบื้องต้น



Clound SSD Virtual Server

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

ตอนที่ 5 : รู้จักกับ Table Storage Service และ Azure PHP SDK การใช้งานเบื้องต้น สำหรับ Table Service บน Storage ของ Windows Azure เป็นบริการภายใต้ Storage ใช้สำหรับจัดเก็บข้อมูลโครงสร้างแบบตาราง entity แบบ Database NoSQL โดย Table Service เหมาะอย่างยิ่งสำหรับการจัดเก็บโครงสร้างข้อมูลที่ไม่ใช่เชิงสัมพันธ์ (non-relational data.) และ ความต้องการจัดเก็บข้อมูลทั่ว ๆ ไป ที่ทำงานบน Internet ความเร็วสูง เรียกใช้งานได้ทุกที่ สามารถ อ่าน-เขียน ได้อย่างรวดเร็ว ของภายใต้การประมวลผลข้อมูลขนาดใหญ่ Cloud ของ Windows Azure โดยการเรียกใช้งาน Table ด้วยกระบวนการทำงานแบบ Cloud จะสามารถทำงานได้อย่างรวดเร็ว แม้ว่าปริมาณข้อมูลจะถูกเก็บมากแค่ไหนก็ตาม และในบทความนี้จะเป็นตัวอย่างการเขียน PHP เพื่อติดต่อกับ Table Services อาทิเช่น การ Insert ข้อมูล , การ Read ข้อมูล , การ Update ข้อมูล และการ Delete ข้อมูล โดย PHP ที่จะใช้จะต้องเป็น Version 5.3 เป็นต้นไป ทำงานร่วมกับ Pear และ Azure SDK for PHP

Table Storage และ Azure PHP SDK

Azure Table Storage Service


ข้อมูลที่จัดเก็บใน Table Service จะสามารถเรียกใช้งานได้จากหลากหลาย Application ไม่จำเป็นว่าจะต้องเป็น PHP เท่านั้น เพราะใน Windows Azure เองก็ได้ก็ได้ออกแบบ SDK ที่รองรับหลาย ๆ ภาษา เช่น .Net , Java , PHP และอื่น ๆ รวมทั้งในอนาคตเร็ว ๆ นี้จะมี SDK ที่รองรับการเขียนบน Mobile อาทิพวก Android , iOS และ Windows Phone อย่างแน่นอน

แต่ในบทความนี้จะเป็นตัวอย่างการเขียนร่วมกับ PHP โดย Version จะต้องเป็น PHP5.3 ขึ้นไปเท่านั้น และก่อนการเขียนจะต้องติดตั้ง PHP ให้เรียบร้อยก่อน โดยอาจจะเลือกใช้ XAMPP , Appserv หรือจะเป็น PHP บน IIS ก็ได้เช่นเดียวกัน

Table  Storage และ Azure PHP SDK

XAMPP for Apache and PHP


PHP Install ติดตั้ง (XAMPP) ตัวเดียวเขียน PHP ได้ครบเลย (แนะนำ !!)

PHP Install for Windows All Version (With Apache,Appserv)

ติดตั้ง PHP บน IIS และการ Setup ให้ปรับแต่ง PHP สามารถทำงาน Run บน IIS Web Serverได้

สามารถเลือกวิธีติดตั้งได้ตามต้องการ แต่จะแนะนำตัวแรก จะง่ายที่สุด

เพิ่มเติม
ในการเขียน PHP กับ Table Storage ของ Windows Azure เราจะมีการใช้ Azure SDK for PHP ซึ่งเป็น Library ที่ช่วยให้การเขียนนั้นง่ายมาก เขียนไม่กี่บรรทัดก็สามารถที่จะเรียกใช้งาน Table ได้แล้ว และในการใช้งาน SDK เราจำเป็นจะต้องมีการเรียกใช้งาน PEAR ด้วย และเราสามารถเรียก Upgrade หรือ Install ตัว PEAR เพิ่มเติมได้

Table Storage Service  และ Azure PHP SDK

กรณีใช้ XAMPP
pear upgrade PEAR


Table Storage Service และ Azure PHP SDK

กรณีใช้ Appserv
go-pear.bat

ทำตามขั้นตอน 4-5 ขั้นตอนก็สามารถเรียกใช้งาน Library ของ PEAR ได้แล้ว

Download Azure SDK for PHP


Table Storage Service และ Azure PHP SDK

ให้ทำการ Download ไฟล์ Azure PHP SDK

Table Storage Service และ Azure PHP SDK

เราจะได้ไฟล์ของ SDK ซึ่งไฟล์ Library จะอยู่ในโฟเดอร์ชื่อว่า WindowsAzure








กลับมายังหน้า Storage บน Portal Management ของ Windows Azure

Table Storage Service และ Azure PHP SDK

ให้คลิกที่ Manage Access Key เพื่อจะเอา Key ไปใช้งาน

Table Storage Service และ Azure PHP SDK

เราจะได้ Key นี้ไว้ใช้งานและเชื่อมต่อกับ Storage หลังจากนั้นเราจะเขียน PHP เพื่อติดต่อกับ Table

การเชื่อมต่อ PHP กับ Table Storage บน Windows Azure

เรียกใช้ SDK และ Pear ชื่อว่า PHPUnit\autoload.php
require_once "WindowsAzure/WindowsAzure.php"; 
require_once 'PHPUnit\autoload.php';

เรียกใช้งาน Class (คล้าย ๆ กับ import library จะมีมาใหม่ใน PHP 5.3.x)
use WindowsAzure\Common\ServicesBuilder;
use WindowsAzure\Common\ServiceException;

สร้าง Connection String และการเชื่อมต่อ อย่าลืมใส่ Key ให้ถูกต้อง
// Create Connection String
$connectionString = "DefaultEndpointsProtocol=http;AccountName=[yourAccount];AccountKey=[yourKey]";

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


โดยขั้นแรกเราจะต้องทำการสร้างชื่อตาราง Table ให้สำหรับการจัดเก็บข้อมูลซะก่อน


phpAzureStorage.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=[Your Account];AccountKey=[Your Key]";

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

try {
    // Create table.
    $tableRestProxy->createTable("customer");

	echo "Storage Table 'customer' has been created.";
}
catch(ServiceException $e){
    $code = $e->getCode();
    $error_message = $e->getMessage();
    // Handle exception based on error codes and messages.
    // Error codes and messages can be found here: 
    // http://msdn.microsoft.com/en-us/library/windowsazure/dd179438.aspx
}
?>

ใน Code นี้จะสร้างตารางชื่อว่า customer (จาก Code อย่าลืมแก้ไข Account และ Key ให้ถูกด้วย)

Table Storage Service และ Azure PHP SDK

ทดสอบ Run โปรแกรม

Table Storage Service และ Azure PHP SDK

เมื่อใช้ Azure Storage Explorer เราจะพบกับตารางที่เราสร้างขึ้น

หลังจากที่ได้ Table แล้ว ต่อไปเราก็จะใช้ PHP ทำการ Insert/Read/Update/Delete ข้อมูล entity ต่าง ๆ ได้ตามต้องการ โดยสามารถอ่านได้จากบทความถัดไป

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









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


   
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2013-10-04 14:45:38 / 2017-03-24 13:22:52
  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 :

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

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