Package Data | |
---|---|
Maintainer Username: | 3ie |
Maintainer Contact: | mathieu.savy@gmail.com (Mathieu Savy) |
Package Create Date: | 2015-04-17 |
Package Last Update: | 2015-04-17 |
Home Page: | |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-16 15:03:27 |
Package Statistics | |
---|---|
Total Downloads: | 1,532 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 6 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This package allow you to work with PostgreSQL stored procedures with Laravel 5. It allows you to generate models to simply use your procedures in your PHP code.
Require this package by adding following dependency on your composer.json
"3ie/laravel-storedprocedures": "0.1.*"
Then update composer with composer update
or composer install
.
If you do not want to use Composer, you can install it by using Laravel Bundle by typing this command
php artisan bundle:install StoredProcedure
Once the package is installed, add the ServiceProvider in providers
array on app/config/app.php :
'providers' => array(
'Mrblackus\LaravelStoredprocedures\LaravelStoredproceduresServiceProvider'
);
You can generate model for your stored procedures (aka functions) by typing this command
php artisan generate-sp
Only stored procedures which name start with sp_
will have a model generated, other ones will be ignored.
Models will be written in app/store_procedures directory (or the one defined in configuration file). Do not edit these models ! They will be overwritten at next generation.
You have to run the vendor:publish method to copy the configuration file into you app directory
php artisan vendor:publish
You can change the database schema to read and the directory where models for stored procedures are written. You can also modify the namespace used for your sp_models
return array(
'schema' => 'public',
'model_save_dir' => 'stored_procedures/',
'model_namespace' => 'App'
);
Generated models have an execute()
methods that allow you to execute stored procedure and get result (if the procedure returns one) from it.
If procedure have IN or INOUT parameter, the execute()
method will have the same parameter in the same order.
If it has OUT or INOUT parameter, model will have an attribute with getter/setter for every OUT parameters.
Setters will not modify data, they are only present to allow you to format data if you want to use it on views by uysing whole model instead of simple variables.
Giving the following stored procedure, that retrieve all friends of a user giving its id...
CREATE OR REPLACE FUNCTION sp_getfriends(IN id integer, OUT id integer, OUT username character varying, OUT firstname character varying, OUT lastname character varying, OUT facebook_id character varying)
RETURNS SETOF record AS
$BODY$SELECT id, username, firstname, lastname, facebook_id
FROM users
LEFT JOIN friends ON users.id = friends.friend_with_id
WHERE friends.user_id = $1$BODY$
LANGUAGE sql VOLATILE
COST 100
ROWS 1000;
...we will have a SP_Getfriends
class generated. We can use it like this :
$userId = 20;
$friends = SP_Getfriends::execute($userId);
$firstFriend = $friends[0];
$friend->getId();
$friend->getUsername();
$friend->getFacebookid();