mirror of
https://github.com/danog/postgres.git
synced 2024-11-30 04:29:12 +01:00
0c3b70633c
Allows the same query to be prepared multiple times on a single connection without error or performance penalty.
9 lines
148 B
PHP
9 lines
148 B
PHP
<?php
|
|
|
|
namespace Amp\Postgres\Internal;
|
|
|
|
class PqStatementStorage extends StatementStorage {
|
|
/** @var \pq\Statement */
|
|
public $statement;
|
|
}
|