Download the PHP package uchiko/sql-querymaker without Composer

On this page you can find all versions of the php package uchiko/sql-querymaker. 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 sql-querymaker

NAME

uchiko\SQL\QueryMaker - helper functions for SQL query generation

SYNOPSIS

    my $query = sql_eq('foo', $v);
    $query->asSql();                 # `foo`=?
    $query->bind();                  # ($v)

    my $query = sql_lt('foo', $v);
    $query->asSql();                 # `foo`<?
    $query->bind();                  # ($v)

    my $query = sql_in('foo', array(
        $v1, $v2, $v3,
    ));
    $query->asSql();                 # `foo` IN (?,?,?)
    $query->bind();                  # ($v1,$v2,$v3)

    my $query = sql_and('foo', array8
        sql_ge($min),
        sql_lt($max)
    ));
    $query->asSql();               # `foo`>=? AND `foo`<?
    $query->bind();                # ($min,$max)

    my $query = sql_and(array(
        sql_eq('foo', $v1),
        sql_eq('bar', $v2)
    ));
    $query->as_sql();                 # `foo`=? AND `bar`=?
    $query->bind();                   # ($v1,$v2)

    my $query = sql_and(array(
        'foo' => $v1,
        'bar' => sql_lt($v2),
    ));
    $query->asSql();                 # `foo`=? AND `bar`<?
    $query->bind();                  # ($v1,$v2)

DESCRIPTION This module is a php port of following perl modules:

   https://github.com/kazuho/SQL-QueryMaker

This module concentrates on providing an expressive, concise way to
declare SQL expressions by exporting carefully-designed functions. It is
possible to use the module to generate SQL query conditions and pass
them as arguments to other more versatile query builders such as
uchiko\SQL\Maker.

The functions exported by the module instantiate comparator objects that
build SQL expressions when their "asSql" method are being invoked.
There are two ways to specify the names of the columns to the
comparator; to pass in the names as argument or to specify then as an
argument to the "asSql" method.

FUNCTIONS "sql_eq(array($column,) $value)" "sql_lt(array($column,) $value)" "sql_gt(array($column,) $value)" "sql_le(array($column,) $value)" "sql_ge(array($column,) $value)" "sql_like(array($column,) $value)" "sql_is_null(array($column))" "sql_is_not_null(array($column))" "sql_not(array($column))" "sql_between(array($column,) $min_value, $max_value)" "sql_not_between(array($column,) $min_value, $max_value)" "sql_in(array($column,) $values)" "sql_not_in(array($column,) $values)" Instantiates a comparator object that tests a column against given value(s).

"sql_and(array($column,) $conditions)" "sql_or(array($column,) $conditions)" Aggregates given comparator objects into a logical expression.

If specified, the column name is pushed down to the arguments when the
"as_sql" method is being called, as show in the second example below.

    sql_and(array(                   # => `foo`=? AND `bar`<?
        sql_eq("foo", $v1),
        sql_lt("bar", $v2)
    ))

    sql_and("foo", array(          # => `foo`>=$min OR `foo`<$max
        sql_ge($min),
        sql_lt($max),
    ))

"sql_and($conditions)" "sql_or($conditions)" Aggregates given pairs of column names and comparators into a logical expression.

The value part is composed of as the argument to the "=" operator if it
is not a blessed reference.

    my $query = sql_and(array(
        foo => 'abc',
        bar => sql_lt(123),
    ));
    $query->asSql();             # => `foo`=? AND bar<?
    $query->bind();              # => ('abc', 123)

"sql_op(array($column,) $op_sql, $bind_values)" Generates a comparator object that tests a column using the given SQL and values. "<@"> in the given SQL are replaced by the column name (specified either by the argument to the function or later by the call to the "<as_sql"> method), and "<?"> are substituted by the given bind values.

"sql_raw($sql, $bind_values)" Generates a comparator object from raw SQL and bind values. "<?"> in the given SQL are replaced by the bind values.

"$obj->asSql()" "$obj->asSql($column_name)" "$obj->asSql($column_name, $quote_identifier_cb)" Compiles given comparator object and returns an SQL expression. Corresponding bind values should be obtained by calling the "bind" method.

The function optionally accepts a column name to which the comparator
object should be bound; an error is thrown if the comparator object is
already bound to another column.

The function also accepts a callback for quoting the identifiers. If
omitted, the identifiers are quoted using "`" after being splitted using
"."; i.e. a column designated as "foo.bar" is quoted as `foo`.`bar`.

"$obj->bind()" Returns a list of bind values corresponding to the SQL expression returned by the "as_sql" method.

CHEAT SHEET IN: sql_eq('foo', 'bar') OUT QUERY: 'foo = ?' OUT BIND: array('bar')

IN:        sql_in('foo', array('bar', 'baz'))
OUT QUERY: '`foo` IN (?,?)'
OUT BIND:  array('bar','baz')

IN:        sql_and(array(sql_eq('foo', 'bar'), sql_eq('baz', 123)))
OUT QUERY: '(`foo` = ?) AND (`baz` = ?)'
OUT BIND:  array('bar',123)

IN:        sql_and('foo', array(sql_ge(3), sql_lt(5)))
OUT QUERY: '(`foo` >= ?) AND (`foo` < ?)'
OUT BIND:  array(3,5)

IN:        sql_or(array(sql_eq('foo', 'bar'), sql_eq('baz', 123)))
OUT QUERY: '(`foo` = ?) OR (`baz` = ?)'
OUT BIND:  array('bar',123)

IN:        sql_or('foo', array('bar', 'baz'))
OUT QUERY: '(`foo` = ?) OR (`foo` = ?)'
OUT BIND:  array('bar','baz')

IN:        sql_is_null('foo')
OUT QUERY: '`foo` IS NULL'
OUT BIND:  array()

IN:        sql_is_not_null('foo')
OUT QUERY: '`foo` IS NOT NULL'
OUT BIND:  array()

IN:        sql_between('foo', 1, 2)
OUT QUERY: '`foo` BETWEEN ? AND ?'
OUT BIND:  array(1,2)

IN:        sql_not('foo')
OUT QUERY: 'NOT `foo`'
OUT BIND:  array()

IN:        sql_op('apples', 'MATCH (@) AGAINST (?)', array('oranges'))
OUT QUERY: 'MATCH (`apples`) AGAINST (?)'
OUT BIND:  array('oranges')

IN:        sql_raw('SELECT * FROM t WHERE id=?',array(123))
OUT QUERY: 'SELECT * FROM t WHERE id=?'
OUT BIND:  array(123)

IN:        sql_in('foo', array(123,sql_raw('SELECT id FROM t WHERE cat=?',array(5))))
OUT QUERY: '`foo` IN (?,(SELECT id FROM t WHERE cat=?))'
OUT BIND:  array(123,5)

AUTHOR Uchiko <memememomo @ gmail com>

SEE ALSO SQL::QueryMaker https://metacpan.org/pod/SQL::QueryMaker


All versions of sql-querymaker 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 uchiko/sql-querymaker contains the following files

Loading the files please wait ....