GNU
|
Liberty Eiffel
|
Automated Tests
|
Wiki
|
Savannah project
|
Debian packages
|
Documentation
>
wrappers
>
POSTGRESQL_CURSOR
+
Point of view
All features
ANY
All features
deferred class POSTGRESQL_CURSOR
Summary
top
copyright
(C) 2006 Paolo Redaelli
license
LGPL v2 or later
date
$Date:$
revision
$Revision:$
Direct parents
Insert list:
LIBPQ_FE_EXTERNALS
Overview
top
Features
{
ANY
}
rowcount
:
INTEGER_32
close
Close the cursor.
execute
(some_sql:
STRING
, some_parameters:
COLLECTION
[
ANY
])
Prepare and execute a database operation (query or command).
execute_many
(an_operation:
STRING
, some_parametes:
COLLECTION
[
COLLECTION
[
ANY
]])
Prepare a database operation (query or command) and then execute it against
some_paramaters
.
fetchone
:
RESULT_ROW
Fetch the next row of a query result set, returning a single sequence, or Void when no more data is available.
fetchmany
(row_number:
INTEGER_32
):
TRAVERSABLE
[
RESULT_ROW
]
Fetch
row_number
rows of a query result.
fetch_all
:
TRAVERSABLE
[
RESULT_ROW
]
Fetch all (remaining) rows of a query result.
{
ANY
}
pqconnectdb
(Some:
POINTER
):
POINTER
pqfinish
(Some:
POINTER
)
pqreset
(Some:
POINTER
)
rowcount
:
INTEGER_32
effective function
{
ANY
}
top
close
deferred procedure
{
ANY
}
top
Close the cursor.
execute
(some_sql:
STRING
, some_parameters:
COLLECTION
[
ANY
])
effective procedure
{
ANY
}
top
Prepare and execute a database operation (query or command).
execute_many
(an_operation:
STRING
, some_parametes:
COLLECTION
[
COLLECTION
[
ANY
]])
deferred procedure
{
ANY
}
top
Prepare a database operation (query or command) and then execute it against
some_paramaters
.
fetchone
:
RESULT_ROW
deferred function
{
ANY
}
top
Fetch the next row of a query result set, returning a single sequence, or Void when no more data is available.
fetchmany
(row_number:
INTEGER_32
):
TRAVERSABLE
[
RESULT_ROW
]
deferred function
{
ANY
}
top
Fetch
row_number
rows of a query result.
fetch_all
:
TRAVERSABLE
[
RESULT_ROW
]
deferred function
{
ANY
}
top
Fetch all (remaining) rows of a query result.
pqconnectdb
(Some:
POINTER
):
POINTER
deferred function
{
ANY
}
top
pqfinish
(Some:
POINTER
)
deferred procedure
{
ANY
}
top
pqreset
(Some:
POINTER
)
deferred procedure
{
ANY
}
top