文件名称:2015-05-06-query-builder
文件大小:8KB
文件格式:ZIP
更新时间:2024-06-27 19:06:50
PHP
Dojo 查询生成器 德萨菲奥 Criar uma classe ou biblioteca capaz de gerar SQL de Consulta。 $builder = new XYZ('tabela'); $builder->select() ->where('campo1', '=', 'valor1') ->where('campo2', '=', 'valor2'); select * from tabela where campo1 = 'valor1' and campo2 = 'valor2' 梅霍里亚斯 选择康普斯 $builder = new XYZ('tabela1'); $builder->select(['campo1', 'campo2']) ->where('campo1', '=', 'valor1') ->where('campo2
【文件预览】:
2015-05-06-query-builder-master
----composer.json(579B)
----phpunit.xml(731B)
----composer.lock(33KB)
----tests()
--------QueryBuilderTest.php(2KB)
----src()
--------QueryBuilder.php(903B)
----.gitignore(22B)
----README.md(2KB)