MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
Statement.php
Ir para a documentação deste ficheiro.
1
<?php
2
/*
3
* $Id$
4
*
5
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16
*
17
* This software consists of voluntary contributions made by many individuals
18
* and is licensed under the LGPL. For more information, see
19
* <http://www.doctrine-project.org>.
20
*/
21
22
namespace
Doctrine\DBAL\Driver
;
23
24
use \PDO;
25
39
interface
Statement
40
{
54
function
bindValue
($param, $value, $type =
null
);
55
78
function
bindParam
($column, &$variable, $type =
null
);
79
85
function
closeCursor
();
86
95
function
columnCount
();
96
104
function
errorCode
();
105
113
function
errorInfo
();
114
129
function
execute
($params =
null
);
130
158
function
fetch
($fetchStyle = PDO::FETCH_BOTH);
159
172
function
fetchAll
($fetchStyle = PDO::FETCH_BOTH);
173
185
function
fetchColumn
($columnIndex = 0);
186
199
function
rowCount
();
200
}
Doctrine\DBAL\Driver\Statement
Definição
Statement.php:40
Doctrine\DBAL\Driver\Statement\columnCount
columnCount()
Doctrine\DBAL\Driver\Statement\closeCursor
closeCursor()
Doctrine\DBAL\Driver\Statement\fetchAll
fetchAll($fetchStyle=PDO::FETCH_BOTH)
Doctrine\DBAL\Driver\Statement\rowCount
rowCount()
Doctrine\DBAL\Driver\Statement\errorCode
errorCode()
Doctrine\DBAL\Driver\Statement\bindParam
bindParam($column, &$variable, $type=null)
Doctrine\DBAL\Driver\Statement\execute
execute($params=null)
Doctrine\DBAL\Driver\Statement\fetchColumn
fetchColumn($columnIndex=0)
Doctrine\DBAL\Driver\Statement\errorInfo
errorInfo()
Doctrine\DBAL\Driver\Statement\bindValue
bindValue($param, $value, $type=null)
Doctrine\DBAL\Driver\Statement\fetch
fetch($fetchStyle=PDO::FETCH_BOTH)
Doctrine\DBAL\Driver
Definição
Connection.php:20
classes
extensions
doctrine-dbal
Doctrine
DBAL
Driver
Statement.php
Gerado por
1.10.0