Download the PHP package mosamirzz/bulk-query without Composer

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

Bulk Query

Latest Version on Packagist Total Downloads

Perform Bulk/Batch Update/Insert/Delete with laravel.

Problem

I tried to make bulk update with laravel but i found that Laravel doesn't support that; so i created this package through it you can perform Batch/Bulk Update, Insert and delete.

Installation

You can install the package via composer:

Usage

Bulk or batch update meaning: that you can update multiple records in single query. Same for delete and insert (can insert or delete multiple records in single query).

The package provided you with 4 classes:

Bulk Delete:

You can perfrom Bulk or batch delete by using the class Delete::class as following:

As shown above the default of delete statment is delete by the column id but if you want to perform the delete query with different column you can use the method useKey and pass to it the column name as following:

The default key used in the delete is the column id

Bulk Insert:

You can perform bulk insert by using the class Insert::class as following:

As shown above the prepare method accepts array[] each array represents the record that we want to insert in the database.

If you are trying to send record that exists before in the table, then the query will throw an exception like the following: SQLSTATE[23000]: Integrity constraint violation

Bulk Update:

You can perform bulk update by using the class Update::class as following:

As shown above

You can change the default column id used by the update to another column with useKey method.

for example you can use the email column as the key used by update as the following:

As shown above we used email column as the key used in update statement.

The default key used in the update is the column id

If you have a record that you want to update only one column and set the other columns values to old value in the database then you can remove the key=>value of the column from the array as following:

As shown above the user with id = 1 will update the column is_admin only, we don't need to pass the name and password columns to it, the query will put the old value of name and password for the user with id = 1.

Same for the user with id = 3 the columns that will be updated is name and is_admin but the password column will be the old value.

Also the user with id = 70 only password will be updated.

Bulk Insert or Update:

You can perform bulk insert and update in the same query by using the class InsertOrUpdate::class.

The query updates the record only when it find a unique column or primary key column.

You can use the class as the following:

As shown above

Testing

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.


All versions of bulk-query with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/support Version ^10.0
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 mosamirzz/bulk-query contains the following files

Loading the files please wait ....