Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
0455438e
Commit
0455438e
authored
Mar 18, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added transaction method to database connection and eloquent model.
parent
fcff36a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
15 deletions
+51
-15
laravel/database/connection.php
+27
-0
laravel/database/eloquent/model.php
+23
-14
laravel/database/eloquent/query.php
+1
-1
No files found.
laravel/database/connection.php
View file @
0455438e
...
...
@@ -85,6 +85,33 @@ class Connection {
}
/**
* Execute a callback wrapped in a database transaction.
*
* @param Closure $callback
* @return void
*/
public
function
transaction
(
$callback
)
{
$this
->
pdo
->
beginTransaction
();
// After beginning the database transaction, we will call the Closure
// so that it can do its database work. If an exception occurs we'll
// rollback the transaction and re-throw back to the developer.
try
{
call_user_func
(
$callback
);
}
catch
(
\Exception
$e
)
{
$this
->
pdo
->
rollBack
();
throw
$e
;
}
$this
->
pdo
->
commit
();
}
/**
* Execute a SQL query against the connection and return a single column result.
*
* <code>
...
...
laravel/database/eloquent/model.php
View file @
0455438e
...
...
@@ -104,17 +104,6 @@ abstract class Model {
}
/**
* Set the accessible attributes for the given model.
*
* @param array $attributes
* @return void
*/
public
static
function
accessible
(
$attributes
)
{
static
::
$accessible
=
$attributes
;
}
/**
* Hydrate the model with an array of attributes.
*
* @param array $attributes
...
...
@@ -158,6 +147,28 @@ abstract class Model {
}
/**
* Set the accessible attributes for the given model.
*
* @param array $attributes
* @return void
*/
public
static
function
accessible
(
$attributes
)
{
static
::
$accessible
=
$attributes
;
}
/**
* Execute a callback wrapped in a database transaction.
*
* @param Closure $callback
* @return void
*/
public
static
function
transaction
(
$callback
)
{
with
(
new
static
)
->
query
()
->
connection
()
->
transaction
(
$callback
);
}
/**
* Create a new model and store it in the database.
*
* If save is successful, the model will be returned, otherwise false.
...
...
@@ -211,9 +222,7 @@ abstract class Model {
*/
public
static
function
all
()
{
$model
=
new
static
;
return
$model
->
query
()
->
get
();
return
with
(
new
static
)
->
query
()
->
get
();
}
/**
...
...
laravel/database/eloquent/query.php
View file @
0455438e
...
...
@@ -243,7 +243,7 @@ class Query {
*
* @return Connection
*/
p
rotected
function
connection
()
p
ublic
function
connection
()
{
return
Database
::
connection
(
$this
->
model
->
connection
());
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment