本文整理汇总了PHP中Customers::CreateCustomers方法的典型用法代码示例。如果您正苦于以下问题:PHP Customers::CreateCustomers方法的具体用法?PHP Customers::CreateCustomers怎么用?PHP Customers::CreateCustomers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Customers
的用法示例。
在下文中一共展示了Customers::CreateCustomers方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: NorthwindEntities
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
require_once 'NorthwindEntities.php';
require_once 'urldef.php';
echo "<h3>Sample5: Add a customer entity to Northwind DB with ID 'CHAN9' and CompanyName as 'Channel9'</h3>";
try {
$proxy = new NorthwindEntities(NORTHWIND_SERVICE_URL);
$customer = Customers::CreateCustomers('channel9', 'CHAN9');
$proxy->AddToCustomers($customer);
$proxy->SaveChanges();
echo "A Customers Entity with CustomerID 'CHAN9' and CompanyName 'channel9' has been added";
} catch (ODataServiceException $e) {
echo "Error:" . $e->getError() . "<br>" . "Detailed Error:" . $e->getDetailedError();
} catch (InvalidOperation $e) {
echo $e->getError();
}
?>
示例2: NorthwindEntities
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
*
* This is asample application to show how to use LoadProperty function to
* retrive Orders entity set associated to each customer entity instance.
*/
require_once 'NorthwindEntities.php';
require_once 'urldef.php';
echo "<h3>Sample10: Add a customer entity to Northwind DB with ID 'CHAN9' and CompanyName as 'Channel9', update the ComapnyName to 'channel8' and delete the customer</h3>";
try {
$svc = new NorthwindEntities(NORTHWIND_SERVICE_URL);
$customer = Customers::CreateCustomers("CHAN9", "channel9");
$svc->AddToCustomers($customer);
$customer->CompanyName = "Channel8";
$svc->UpdateObject($customer);
$svc->DeleteObject($customer);
$svc->SaveChanges();
echo "User asked for adding Customer with CustomerID CHAN9 and CompanyName channe9, update CompanyName to channel8 then to delete the customer (Since this will not affect the data service this queries wont be fired it will handled by context itself)";
} catch (ADODotNETDataServicesException $e) {
echo "Error:" . $e->getError() . "<br>" . "Detailed Error:" . $e->getDetailedError();
}