Download the PHP package consatan/sqlbuilder without Composer

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

SQL Builder

Php Version Build Status Coverage Status

让复杂 SQL 不再复杂

安装

起因

虽然数据库操作类都支持多表关联查询,也支持纯 SQL 查询,但你是否遇到过复杂查询,又有多个判断条件的情况?

这个工具要解决的就是这类问题,如下(具体见 单元测试样例)

SQL-markup 规则

TODO

协议

BSD-3-Clause

API 文档

[TOC]

Builder 类

Builder SQL 语句。

类概要

Builder::__construct

实例化 Builder 类

参数说明

$config 支持以下实例化选项

返回值

成功返回 Consatan\SQLBuilder\Builder 实例。

使用示例

Builder::build

build 一个 SQL-markup。

参数说明

$label SQL-markup 标签,允许的标签格式为 ``

$bind 绑定参数列表

$sql 传递该参数将覆盖 SQL-markup 中的内置 SQL 语句

返回值

返回当前 Consatan\SQLBuilder\Builder 实例,便于链式调用。

错误/异常

当参数格式错误时抛出 \InvalidArgumentException 异常。

使用示例

Builder::prepare

对 builder 的 SQL 进行 prepare 化操作。

参数说明

$sql 要执行的 SQL 语句。

$bind 绑定参数列表。

$driverOptions 参见 PDO::prepare$driver_options 参数说明。

返回值

返回格式如下的数组

错误/异常

当参数错误时抛出 \InvalidArgumentException 异常。

使用示例

Builder::run

执行 builder 的 SQL。

参数说明

$dbh PDO 实例。

$sql 见 Builder::prepare 的 $sql 参数说明。

$bind 见 Builder::prepare 的 $bind 参数说明。

$driverOptions 见 Builder::prepare 的 $driverOptions 参数说明。

返回值

成功返回 \PDOStatement 实例。

错误/异常

当参数错误时抛出 \InvalidArgumentException 异常。

使用示例

Bind 类

PDO 绑定参数辅助类。

类概要

Bind::getValues

获取格式化后的 PDO 参数绑定数据

返回值

格式化后的 PDO 参数绑定数据,格式如下

使用示例

Bind::int

对给定数据进行 PDO int 数据类型绑定。

参数说明

...$bind

返回值

成功返回 Consatan\SQLBuilder\Bind 实例。

错误\异常

绑定参数值无效抛出 \InvalidArgumentException 异常。

使用示例

Bind::str

对给定数据进行 PDO str 数据类型绑定。

见 Bind::int 说明。

Bind::null

对给定数据进行 PDO null 数据类型绑定。

参数说明

$val

其余见 Bind::int 说明。

Bind::bool

对给定数据进行 PDO bool 数据类型绑定。

见 Bind::int 说明。

Bind::lob

对给定数据进行 PDO lob 数据类型绑定。

见 Bind::int 说明。

Bind::assertBindValue

断言绑定参数是否合法。

参数说明

$bind 要断言的绑定参数,必须是 scalar 或 null 数据类型。

错误/异常

绑定参数不合法抛出 \InvalidArgumentException 异常。

使用示例

Bind::assertArrayBindValue

Array 版的 Bind::assertBindValue。

参数说明

$array 要断言的绑定参数数组,数组元素必须是 scalar 或 null 数据类型。

错误/异常

绑定参数不合法抛出 \InvalidArgumentException 异常。

使用示例

Bind::assertNamedPlaceholder

断言命名占位符格式。

参数说明

$placeholder 要断言的命名占位符变量。命名占位符必须符合以下格式。

错误/异常

命名占位符不合法抛出 \InvalidArgumentException 异常。

使用示例

Bind::assertPDOParamType

断言 PDO 参数绑定数据类型。

参数说明

$type 要断言的 PDO 参数绑定数据类型,详见

错误/异常

$type 为未定义的 PDO 参数绑定数据类型时抛出 \InvalidArgumentException 异常。

使用示例

All versions of sqlbuilder with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1
ext-pdo Version *
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 consatan/sqlbuilder contains the following files

Loading the files please wait ....