A C D E F G I J N O P R S T W Z _

A

addSqlTypes(PyObject) - Static method in class com.ziclix.python.sql.zxJDBC
 
arraysize - Variable in class com.ziclix.python.sql.PyCursor
 

C

cache - Variable in class com.ziclix.python.sql.PyCursor
 
callableStatement(String) - Method in class com.ziclix.python.sql.PyCursor
Call a stored procedure.
callproc(String, PyObject) - Method in class com.ziclix.python.sql.PyCursor
This method is optional since not all databases provide stored procedures.
clear() - Method in class com.ziclix.python.sql.PyCursor
Reset the cursor.
close() - Method in class com.ziclix.python.sql.PyCursor
Close the cursor now (rather than whenever __del__ is called).
close() - Method in class com.ziclix.python.sql.PyConnection
Close the connection now (rather than whenever __del__ is called).
columns(PyObject, PyObject, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyExtendedCursor
$METHOD_DESCRIPTION$
com.ziclix.python.sql - package com.ziclix.python.sql
 
com.ziclix.python.sql.informix - package com.ziclix.python.sql.informix
 
commit() - Method in class com.ziclix.python.sql.PyConnection
Commit any pending transaction to the database.
connect(String, Properties, String) - Static method in class com.ziclix.python.sql.zxJDBC
Connects to the database.
connection - Variable in class com.ziclix.python.sql.PyCursor
 
counter - Variable in class com.ziclix.python.sql.PyCursor
 
create(ResultSet) - Method in class com.ziclix.python.sql.PyCursor
Create the results after a successful execution.
createDescription(ResultSetMetaData) - Method in class com.ziclix.python.sql.PyCursor
(name, type_code, display_size, internal_size, precision, scale, null_ok)
createResults(ResultSet) - Method in class com.ziclix.python.sql.PyCursor
Creates the results of a query.
cursor() - Method in class com.ziclix.python.sql.PyConnection
Return a new Cursor Object using the connection.

D

DatabaseError - Static variable in class com.ziclix.python.sql.zxJDBC
 
DatabaseError(String) - Static method in class com.ziclix.python.sql.zxJDBC
 
DataError - Static variable in class com.ziclix.python.sql.zxJDBC
 
DataError(String) - Static method in class com.ziclix.python.sql.zxJDBC
 
datahandler - Variable in class com.ziclix.python.sql.informix.InformixDataHandler
 
datahandler - Variable in class com.ziclix.python.sql.PyCursor
 
DataHandler - interface com.ziclix.python.sql.DataHandler.
The DataHandler is responsible mapping the JDBC data type to a JPython object.
Date(int, int, int) - Static method in class com.ziclix.python.sql.zxJDBC
This function constructs an object holding a date value.
DateFromTicks(double) - Static method in class com.ziclix.python.sql.zxJDBC
This function constructs an object holding a date value from the given ticks value (number of seconds since the epoch; see the documentation of the standard Python time module for details).
debug(String) - Static method in class com.ziclix.python.sql.PyUtil
Print the debug message.
DefaultDataHandler - class com.ziclix.python.sql.DefaultDataHandler.
The default type handler.
DefaultDataHandler() - Constructor for class com.ziclix.python.sql.DefaultDataHandler
$CONSTRUCTOR_DESCRIPTION$
description - Variable in class com.ziclix.python.sql.PyCursor
 

E

Error - Static variable in class com.ziclix.python.sql.zxJDBC
 
Error(SQLException) - Static method in class com.ziclix.python.sql.zxJDBC
 
Error(String) - Static method in class com.ziclix.python.sql.zxJDBC
 
execute(String, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyCursor
Prepare and execute a database operation (query or command).
executemany(String, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyCursor
Prepare a database operation (query or command) and then execute it against all parameter sequences or mappings found in the sequence seq_of_parameters.

F

fetchall() - Method in class com.ziclix.python.sql.PyCursor
Fetch all (remaining) rows of a query result, returning them as a sequence of sequences (e.g.
fetchmany(int) - Method in class com.ziclix.python.sql.PyCursor
Fetch the next set of rows of a query result, returning a sequence of sequences (e.g.
fetchone() - Method in class com.ziclix.python.sql.PyCursor
Fetch the next row of a query result set, returning a single sequence, or None when no more data is available.
foreignkeys(PyObject, PyObject, PyObject, PyObject, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyExtendedCursor
Gets a description of the foreign key columns in the foreign key table that reference the primary key columns of the primary key table (describe how one table imports another's key.) This should normally return a single foreign key/primary key pair (most tables only import a foreign key from a table once.) They are ordered by FKTABLE_CAT, FKTABLE_SCHEM, FKTABLE_NAME, and KEY_SEQ.

G

getPyClass() - Method in class com.ziclix.python.sql.PyCursor
$METHOD_DESCRIPTION$
getPyClass() - Method in class com.ziclix.python.sql.PyConnection
$METHOD_DESCRIPTION$
getPyClass() - Method in class com.ziclix.python.sql.zxJDBC
 
getPyClass() - Method in class com.ziclix.python.sql.PyExtendedCursor
$METHOD_DESCRIPTION$
getPyObject(ResultSet, int, int) - Method in class com.ziclix.python.sql.informix.InformixDataHandler
$METHOD_DESCRIPTION$
getPyObject(ResultSet, int, int) - Method in class com.ziclix.python.sql.DefaultDataHandler
$METHOD_DESCRIPTION$
getPyObject(ResultSet, int, int) - Method in class com.ziclix.python.sql.JDBC20DataHandler
$METHOD_DESCRIPTION$
getPyObject(ResultSet, int, int) - Method in interface com.ziclix.python.sql.DataHandler
Given a ResultSet, column and type, return the appropriate JPython object.

I

InformixDataHandler - class com.ziclix.python.sql.informix.InformixDataHandler.
Informix specific data handling.
InformixDataHandler(DataHandler) - Constructor for class com.ziclix.python.sql.informix.InformixDataHandler
$CONSTRUCTOR_DESCRIPTION$
initModule(PyObject) - Method in class com.ziclix.python.sql.PyCursor
Initializes the object's namespace.
initModule(PyObject) - Method in class com.ziclix.python.sql.PyConnection
$METHOD_DESCRIPTION$
initModule(PyObject) - Method in class com.ziclix.python.sql.zxJDBC
Initializes the module.
initModule(PyObject) - Method in class com.ziclix.python.sql.PyExtendedCursor
$METHOD_DESCRIPTION$
InterfaceError - Static variable in class com.ziclix.python.sql.zxJDBC
 
InterfaceError(String) - Static method in class com.ziclix.python.sql.zxJDBC
 

J

JDBC20DataHandler - class com.ziclix.python.sql.JDBC20DataHandler.
Support for JDBC 2.x type mappings, including Arrays, CLOBs and BLOBs.
JDBC20DataHandler() - Constructor for class com.ziclix.python.sql.JDBC20DataHandler
$CONSTRUCTOR_DESCRIPTION$

N

nextset() - Method in class com.ziclix.python.sql.PyCursor
Returns the next set, else None if no more sets exist.
NotSupportedError - Static variable in class com.ziclix.python.sql.zxJDBC
 
NotSupportedError(String) - Static method in class com.ziclix.python.sql.zxJDBC
 

O

OperationalError - Static variable in class com.ziclix.python.sql.zxJDBC
 
OperationalError(String) - Static method in class com.ziclix.python.sql.zxJDBC
 

P

prepareStatement(String) - Method in class com.ziclix.python.sql.PyCursor
Prepare a statement ready for executing.
primarykeys(PyObject, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyExtendedCursor
Gets a description of a table's primary key columns.
procedurecolumns(PyObject, PyObject, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyExtendedCursor
$METHOD_DESCRIPTION$
procedures(PyObject, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyExtendedCursor
$METHOD_DESCRIPTION$
ProgrammingError - Static variable in class com.ziclix.python.sql.zxJDBC
 
ProgrammingError(String) - Static method in class com.ziclix.python.sql.zxJDBC
 
PyConnection - class com.ziclix.python.sql.PyConnection.
A connection to the database.
PyConnection() - Constructor for class com.ziclix.python.sql.PyConnection
Don't really want this to be public but InitModule requires it.
PyCursor - class com.ziclix.python.sql.PyCursor.
These objects represent a database cursor, which is used to manage the context of a fetch operation.
PyCursor() - Constructor for class com.ziclix.python.sql.PyCursor
InitModule requires there be an empty constructor, but I really want the Statement to be passed in the constructor.
PyExtendedCursor - class com.ziclix.python.sql.PyExtendedCursor.
A cursor with extensions to the DB API 2.0.
PyExtendedCursor() - Constructor for class com.ziclix.python.sql.PyExtendedCursor
 
PyList_Check(PyObject) - Static method in class com.ziclix.python.sql.PyUtil
Is the obj a List?
PyTuple_Check(PyObject) - Static method in class com.ziclix.python.sql.PyUtil
Is the obj a Tuple?
PyTupleList_Check(PyObject) - Static method in class com.ziclix.python.sql.PyUtil
Is the obj a List or Tuple?
PyTupleListOfTupleList_Check(PyObject) - Static method in class com.ziclix.python.sql.PyUtil
Is the obj a List or Tuple of Lists or Tuples?
PyUtil - class com.ziclix.python.sql.PyUtil.
Static utility class.

R

results - Variable in class com.ziclix.python.sql.PyCursor
 
rollback() - Method in class com.ziclix.python.sql.PyConnection
This method is optional since not all databases provide transaction support. In case a database does provide transactions this method causes the database to roll back to the start of any pending transaction.
rowcount - Variable in class com.ziclix.python.sql.PyCursor
 

S

setJDBCObject(PreparedStatement, int, PyObject) - Method in class com.ziclix.python.sql.informix.InformixDataHandler
$METHOD_DESCRIPTION$
setJDBCObject(PreparedStatement, int, PyObject) - Method in class com.ziclix.python.sql.DefaultDataHandler
$METHOD_DESCRIPTION$
setJDBCObject(PreparedStatement, int, PyObject) - Method in interface com.ziclix.python.sql.DataHandler
$METHOD_DESCRIPTION$
setJDBCObject(PreparedStatement, int, PyObject, int) - Method in class com.ziclix.python.sql.informix.InformixDataHandler
$METHOD_DESCRIPTION$
setJDBCObject(PreparedStatement, int, PyObject, int) - Method in class com.ziclix.python.sql.DefaultDataHandler
$METHOD_DESCRIPTION$
setJDBCObject(PreparedStatement, int, PyObject, int) - Method in interface com.ziclix.python.sql.DataHandler
$METHOD_DESCRIPTION$
statement() - Method in class com.ziclix.python.sql.PyCursor
Create a Statement.
statistics(PyObject, PyObject, PyObject, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyExtendedCursor
Gets a description of a table's indices and statistics.

T

tables(PyObject, PyObject, PyObject, PyObject) - Method in class com.ziclix.python.sql.PyExtendedCursor
Only table descriptions matching the catalog, schema, table name and type criteria are returned.
Time(int, int, int) - Static method in class com.ziclix.python.sql.zxJDBC
This function constructs an object holding a time value.
TimeFromTicks(double) - Static method in class com.ziclix.python.sql.zxJDBC
This function constructs an object holding a time value from the given ticks value (number of seconds since the epoch; see the documentation of the standard Python time module for details).
Timestamp(int, int, int, int, int, int) - Static method in class com.ziclix.python.sql.zxJDBC
This function constructs an object holding a time stamp value.
TimestampFromTicks(double) - Static method in class com.ziclix.python.sql.zxJDBC
This function constructs an object holding a time stamp value from the given ticks value (number of seconds since the epoch; see the documentation of the standard Python time module for details).
toString() - Method in class com.ziclix.python.sql.PyCursor
String representation of the object.
toString() - Method in class com.ziclix.python.sql.PyConnection
Produces a string representation of the object.
toString() - Method in class com.ziclix.python.sql.PyExtendedCursor
String representation of the object.

W

Warning - Static variable in class com.ziclix.python.sql.zxJDBC
 
Warning(String) - Static method in class com.ziclix.python.sql.zxJDBC
 

Z

zxJDBC - class com.ziclix.python.sql.zxJDBC.
Creates database connections.
zxJDBC() - Constructor for class com.ziclix.python.sql.zxJDBC
 

_

__class__ - Static variable in class com.ziclix.python.sql.PyCursor
 
__class__ - Static variable in class com.ziclix.python.sql.PyConnection
 
__class__ - Static variable in class com.ziclix.python.sql.zxJDBC
 
__class__ - Static variable in class com.ziclix.python.sql.PyExtendedCursor
 
__del__() - Method in class com.ziclix.python.sql.PyCursor
Delete the cursor.
__findattr__(String) - Method in class com.ziclix.python.sql.PyCursor
Gets the value of the attribute name.
__findattr__(String) - Method in class com.ziclix.python.sql.PyConnection
$METHOD_DESCRIPTION$
__members__ - Static variable in class com.ziclix.python.sql.PyCursor
 
__members__ - Static variable in class com.ziclix.python.sql.PyExtendedCursor
 
__methods__ - Static variable in class com.ziclix.python.sql.PyCursor
 
__methods__ - Static variable in class com.ziclix.python.sql.PyExtendedCursor
 
__setattr__(String, PyObject) - Method in class com.ziclix.python.sql.PyCursor
Sets the attribute name to value.
__setattr__(String, PyObject) - Method in class com.ziclix.python.sql.PyConnection
$METHOD_DESCRIPTION$

A C D E F G I J N O P R S T W Z _

Copyright (c) 2000 brian zimmer. All Rights Reserved.