Libraries tagged by insert select
komeiji-satori/miner
14 Downloads
A dead simple PHP class for building SQL statements. No manual string concatenation necessary.
i-nocturne/swoole-sql-query
14 Downloads
Object-oriented query builders for MySQL, Postgres, SQLite, and SQLServer; can be used with any database connection library.
bronos/php-sql-query-builder
5870 Downloads
Object-oriented query builders for MySQL, Postgres, SQLite, and SQLServer; can be used with any database connection library.
ulue/miner
13 Downloads
A dead simple PHP class for building SQL statements. No manual string concatenation necessary.
hamaryuginh/meekrodb-bundle
76 Downloads
A Symfony2 Bundle for MeekroDB
leandroip/modelclass
12 Downloads
A class to implement PHP Models and handle basic MySql operations like insert, select, update, delete and perform search by keywords.
ozh/sqltableextractor
5 Downloads
Extract table names from SQL queries (SELECT, INSERT, UPDATE, JOIN, subqueries)
optiwariindia/database
290 Downloads
A library to connect database and use basic activities in database like create,select,insert,update,delete and drop using predefined methods
mtkocak/basicdb
50 Downloads
A BasicDB implementation using PDO. Select, Insert, Update and Delete operations in an OOP way.
gonzalo123/sql-string-generator
4 Downloads
Write a DSL to generate valid SQL statements for SELECT, INSERT, UPDATE and DELETE
coco-project/sql-cache
23 Downloads
Based on the lexical analysis of "update," "select," "insert," and "delete" SQL statements, an automatic caching strategy is implemented. The strategy involves caching the data when executing a select operation and associating the table name contained in the SQL statement with the corresponding cached records. When executing update, insert, or delete operations, the table name from the SQL statement is extracted, and any cached records containing this table name from previous select operations are deleted. This strategy enables seamless caching without delay and eliminates the need to worry about data synchronization issues. It is particularly effective for tables with infrequent data modifications. For tables with frequent modifications, they can be ignored by configuring the strategy accordingly.
geovanirangel/modellayer
25 Downloads
O ModelLayer é um componente baseado em PDO que abstraí operações de CRUD(Select, Insert, Update e Delete) no seu banco de dados.
taeluf/lildb
166 Downloads
A simple PDO wrapper with convenience methods for common SQL verbs like insert, update, delete, select
lyhiving/mmodel
22 Downloads
PHP mini model.Fast MySQL select/insert/update/delete actions.
genai/sql-mapper
162 Downloads
MyBatis-style SQL mapper: mark an interface #[Mapper] and its methods #[Select]/#[Insert]/#[Update]/#[Delete] with the SQL. A build-time processor compiles a reflection-free Cache\ implementation (prepared statements, #{name} bound params, optional row->object hydration) and registers it as a container bean keyed by the interface. Self-contained: a bundled DatabaseConfig provides the 'PDO' bean from a [database] group in the app's app.ini, so you only edit config. Runtime is PHP 5.3-safe.