simplified database connection configuration.
This commit is contained in:
22
laravel/database/queries/postgres.php
Normal file
22
laravel/database/queries/postgres.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php namespace Laravel\Database\Queries;
|
||||
|
||||
use PDO;
|
||||
|
||||
class Postgres extends Query {
|
||||
|
||||
/**
|
||||
* Insert an array of values into the database table and return the value of the ID column.
|
||||
*
|
||||
* @param array $values
|
||||
* @return int
|
||||
*/
|
||||
public function insert_get_id($values)
|
||||
{
|
||||
$query = $this->connection->pdo->prepare($this->grammar->insert_get_id($this, $values));
|
||||
|
||||
$query->execute(array_values($values));
|
||||
|
||||
return (int) $query->fetch(PDO::FETCH_CLASS, 'stdClass')->id;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user