2017 © Pedro Peláez
 

library cloudsql-client

Interface for making SQL query's to Zoho over HTTP

image

zoho/cloudsql-client

Interface for making SQL query's to Zoho over HTTP

  • Thursday, August 15, 2013
  • by Opus1no2
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Zoho CloudSQL Client

A simple interface for using Zoho's CloudSQL API, (*1)

Installation

Installation is conveniently provided via Composer., (*2)

To get started, install composer in your project:, (*3)

$ curl -s https://getcomposer.org/installer | php

Next, add a composer.json file containing the following:, (*4)

}
    "require": {
        "zoho/cloudsql-client": "dev-master"
    }
}

Finally, install!, (*5)

$ php composer.phar install

Usage

Using the Query class is easy:, (*6)

``` php <?php require_once 'Zoho_CloudDb_Query.php';, (*7)

try { $query = new Zoho_CloudDb_Query(); $result = $query->setDb('your_db_table') ->setQuery('SELECT "column1" from "employee_id_table" where "column1" = 1234') ->run(); print_r(json_decode($result)); } catch (Exception $e) { echo $e->getMessage(); }, (*8)

```, (*9)

License

MIT, (*10)

The Versions

15/08 2013

dev-master

9999999-dev

Interface for making SQL query's to Zoho over HTTP

  Sources   Download

by Travis Tillotson