Download the PHP package uri2x/php-cql without Composer

On this page you can find all versions of the php package uri2x/php-cql. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-cql

uri2x/php-cql

License: MIT

Last update : 2023/07/08

Native Apache Cassandra and ScyllaDB connector for PHP based on the CQL binary protocol (v3), without the need for an external extension.

Requires PHP version >5, Cassandra >1.2, and any ScyllaDB version.

Installation

Either:

OR

Important

Make sure you turn on the native transport for Cassandra by editing your cassandra.yaml file and adding the following line:

start_native_transport: true

Usage

Available methods

connect($host, $user = '', $passwd = '', $dbname = '', $port = 9042)

Connects to a Cassandra node.

@param string $host   Host name/IP to connect to use 'p:' as prefix for persistent connections.
@param string $user   Username in case authentication is needed.
@param string $passwd Password in case authentication is needed.
@param string $dbname Keyspace to use upon connection.
@param int    $port   Port to connect to.
@param int    $retries: Number of connection retries (default: 3, useful for persistent connections in case of timeouts).

@return int The socket descriptor used. FALSE if unable to connect.

close()

Closes an opened connection.

@return int 1

query($cql, $consistency = CASSANDRA_CONSISTENCY_ALL, $values = [])

Queries the database using the given CQL.

@param string $cql         The query to run.
@param int    $consistency Consistency level for the operation.
@param array  $values      Values to bind in a sequential or key=>value format,
                           where key is the column's name.

@return array Result of the query. Might be an array of rows (for SELECT),
              or the operation's result (for USE, CREATE, ALTER, UPDATE).
              NULL on error.

bind_param($value, $column_type) Returns a binded parameter to be used with the query method (static method)

 @param mixed $value Value to bind        The query to run.
 @param int   $type  Value type out of one of the Cassandra::COLUMNTYPE_* constants

 @return array value to be used as part of the $values parameter of the query method

prepare($cql)

Prepares a query.

@param string $cql The query to prepare.

@return array The statement's information to be used with the execute
              method. NULL on error.

execute($stmt, $values, $consistency = CASSANDRA_CONSISTENCY_ALL)

Executes a prepared statement.

@param array $stmt        The prepared statement as returned from the
                          prepare method.
@param array $values      Values to bind in key=>value format where key is
                          the column's name.
@param int   $consistency Consistency level for the operation.

@return array Result of the execution. Might be an array of rows (for
              SELECT), or the operation's result (for USE, CREATE, ALTER,
              UPDATE).
              NULL on error.

Procedural

In addition, a wrapper has been made for those who prefer to work with procedural programming. To use the wrapper, make sure to include Cassandra_Procedural.php that contains the following methods:

cassandra_connect($host, $user = '', $passwd = '', $dbname = '', $port = 9042)

Same as $Cassandra->connect() above. Returns an object type if connection
was successfull. Otherwise returns NULL.

cassandra_close($obj)

Same as $Cassandra->close() above. Use $obj from cassandra_connect as the
first parameter.

cassandra_query($obj, $cql, $consistency = CASSANDRA_CONSISTENCY_ALL, $values = [])

Same as $Cassandra->query() above. Use $obj from cassandra_connect as the
first parameter.

cassandra_bind_param($value, $column_type)

Same as $Cassandra->bind_param() above

cassandra_prepare($obj, $cql)

Same as $Cassandra->prepare() above. Use $obj from cassandra_connect as the
first parameter.

cassandra_execute($obj, $stmt, $values, $consistency = CASSANDRA_CONSISTENCY_ALL)

Same as $Cassandra->execute() above. Use $obj from cassandra_connect as the
first parameter.

Sample usage

or, same as above in procedural style:

External links

  1. Datastax's blog introducing the binary protocol: http://www.datastax.com/dev/blog/binary-protocol

  2. CQL definitions https://cassandra.apache.org/_/native_protocol.html

License

The MIT License (MIT)

Copyright (c) 2023 Uri Hartmann

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

All versions of php-cql with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package uri2x/php-cql contains the following files

Loading the files please wait ....