|
|
|
startup(self,
mode="normal")
Starts up Oracle instance |
source code
|
|
|
shutdown(self,
mode="normal")
Shuts down Oracle instance |
source code
|
|
|
|
|
rollback(self)
Rollback pending transaction |
source code
|
|
|
executeAll(self,
sql,
param=[])
Executes the request given in parameter and returns a list of record
(a cursor.fetchall()) Use a private cursor not to pollute execute on. |
source code
|
|
|
execute(self,
sql,
fetch=True,
cursorSize=None)
Executes the request given in parameter. |
source code
|
|
|
|
|
getCursor(self)
Returns the cursor of the current query |
source code
|
|
|
getDescription(self,
short=True)
Returns header description of cursor with column name and type If
short is set to false, the type is given after the column name |
source code
|
|
|
getRowCount(self)
Returns number of line processed with last request |
source code
|
|
|
|
|
getServerOuput(self)
Gets the server buffer output filled with dbms_output.put_line
dbms_output should be enabled (should we do this automatically at
cursor creation ?) Return list of string or empty list [] if there's
nothing to get. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|