Query Sybase Data Using the OData SDK for PHP



You can use the API Server and the OData PHP SDK to easily consume Sybase entities in PHP by modeling them as objects.

The CData API Server, when paired with the ADO.NET Provider for Sybase, exposes Sybase data (or data from any of 200+ other ADO.NET Providers) as Web services. You can follow the procedure below to work with Sybase data as PHP objects.

Set Up the API Server

Follow the steps below to begin producing secure Sybase OData services:

Deploy

The API Server runs on your own server. On Windows, you can deploy using the stand-alone server or IIS. On a Java servlet container, drop in the API Server WAR file. See the help documentation for more information and how-tos.

The API Server is also easy to deploy on Microsoft Azure, Amazon EC2, and Heroku.

Connect to Sybase

After you deploy the API Server and the ADO.NET Provider for Sybase, provide authentication values and other connection properties needed to connect to Sybase by clicking Settings -> Connections and adding a new connection in the API Server administration console.

To connect to Sybase, specify the following connection properties:

  • Server: Set this to the name or network address of the Sybase database instance.
  • Database: Set this to the name of the Sybase database running on the specified Server.

Optionally, you can also secure your connections with TLS/SSL by setting UseSSL to true.

Sybase supports several methods for authentication including Password and Kerberos.

Connect Using Password Authentication

Set the AuthScheme to Password and set the following connection properties to use Sybase authentication.

  • User: Set this to the username of the authenticating Sybase user.
  • Password: Set this to the username of the authenticating Sybase user.

Connect using LDAP Authentication

To connect with LDAP authentication, configure Sybase server-side to use the LDAP authentication mechanism.

After configuring Sybase for LDAP, you can connect using the same credentials as Password authentication.

Connect Using Kerberos Authentication

To leverage Kerberos authentication, begin by enabling it setting AuthScheme to Kerberos. See the Using Kerberos section in the Help documentation for more information on using Kerberos authentication.

You can find an example connection string below: Server=MyServer;Port=MyPort;User=SampleUser;Password=SamplePassword;Database=MyDB;Kerberos=true;KerberosKDC=MyKDC;KerberosRealm=MYREALM.COM;KerberosSPN=server-name

You can then choose the Sybase entities you want to allow the API Server access to by clicking Settings -> Resources.

Additionally, configure the API Server for compatibility with the OData SDK for PHP: Click Server -> Settings and in the OData section set Default Version to 2.0.

Authorize API Server Users

After determining the OData services you want to produce, authorize users by clicking Settings -> Users. The API Server uses authtoken-based authentication and supports the major authentication schemes. You can authenticate as well as encrypt connections with SSL. Access can also be restricted based on IP address; by default, only connections from the local machine are allowed.

For simplicity, we will authenticate to the API Server by setting the authtoken in the URL. This is not enabled by default; you will need to add the following lines to the API Server configuration file, settings.cfg.

[Application] AllowAuthTokenInUrl = true

The settings.cfg file is located in the data directory. In the .NET edition, the data directory is the app_data folder under the www folder. In the Java edition, the data directory's location depends on the operation system:

  • Windows: C:\ProgramData\CData\Sybase\
  • Unix or Mac OS X: ~/cdata/Sybase/

Work with Sybase Entities as PHP Objects

Follow the steps below to use the ODataPHP SDK to create a proxy class that will connect to the Web services exposed by the API Server.

  1. Pass the URL to a command like the one below:

    php C:\PHPLib\ODataphp\PHPDataSvcUtil.php /uri=https://your-server:8032/api.rsc/@your-authtoken/ /out=C:\PHPLib\ODataphp\SybaseEntities.php

    The preceding command defines classes from the metadata returned in the response from the OData endpoint, then outputs the class definitions to the specified folder.

    Both the API Server and the OData SDK for PHP support forms and Windows authentication. The API Server uses authtokens to authenticate users authorized to access the OData endpoint. You can supply authtokens in HTTP Basic authentication or append them to the OData URL.

    You can configure authorized users in the Settings -> Users section of the API Server administration console.

  2. You can now start accessing Sybase data using an object-oriented interface in PHP. The code below creates a record of the Products table and then retrieves the live data, showing the newly created record.

    require_once 'SybaseEntities.php'; try{ $svc = new CData(); $products = new Products(); $products->ProductName = 'Konbu'; $svc->AddToProducts($products); $svc->SetSaveChangesOptions(SaveChangesOptions::None); $svc->SaveChanges(); $response = $svc->products()->Execute(); foreach($response->Result as $products) echo $products->Id."
    "; } catch (Exception $e) { //catch errors from the API Server echo $e->getError(), "\n"; }

Ready to get started?

Learn more or sign up for a free trial:

CData API Server