- getBigDecimal(String) - Method in class de.bezier.data.sql.SQL
-
Read a java.math.BigDecimal value from the specified field.
- getBigDecimal(int) - Method in class de.bezier.data.sql.SQL
-
Read a java.math.BigDecimal value from the specified field.
- getBlob(String) - Method in class de.bezier.data.sql.SQL
-
Read a value from the specified field to have it returned as an byte[]
- getBlob(int) - Method in class de.bezier.data.sql.SQL
-
Read a value from the specified field to have it returned as an byte[]
- getBoolean(String) - Method in class de.bezier.data.sql.SQL
-
Read a boolean value from the specified field.
- getBoolean(int) - Method in class de.bezier.data.sql.SQL
-
Read a boolean value from the specified field.
- getColumnNames() - Method in class de.bezier.data.sql.SQL
-
Returns an array with the column names of the last request.
- getConnection() - Method in class de.bezier.data.sql.SQL
-
Get connection.
- getDate(String) - Method in class de.bezier.data.sql.SQL
-
Read a java.sql.Date value from the specified field.
- getDate(int) - Method in class de.bezier.data.sql.SQL
-
Read a java.sql.Date value from the specified field.
- getDebug() - Method in class de.bezier.data.sql.SQL
-
Get current debugging setting
- getDouble(String) - Method in class de.bezier.data.sql.SQL
-
Read a double value from the specified field.
- getDouble(int) - Method in class de.bezier.data.sql.SQL
-
Read a double value from the specified field.
- getDriverVersion() - Method in class de.bezier.data.sql.SQL
-
Return the version of the currently active JDBC driver
- getFloat(String) - Method in class de.bezier.data.sql.SQL
-
Read a float value from the specified field.
- getFloat(int) - Method in class de.bezier.data.sql.SQL
-
Read a float value from the specified field.
- getInt(String) - Method in class de.bezier.data.sql.SQL
-
Read an integer value from the specified field.
- getInt(int) - Method in class de.bezier.data.sql.SQL
-
Read an integer value from the specified field.
- getLong(String) - Method in class de.bezier.data.sql.SQL
-
Read a long value from the specified field.
- getLong(int) - Method in class de.bezier.data.sql.SQL
-
Read a long value from the specified field.
- getNameMapper() - Method in class de.bezier.data.sql.SQL
-
Get the current NameMapper
- getObject(String) - Method in class de.bezier.data.sql.SQL
-
Read a value from the specified field to have it returned as an object.
- getObject(int) - Method in class de.bezier.data.sql.SQL
-
Read a value from the specified field to have it returned as an object.
- getString(String) - Method in class de.bezier.data.sql.SQL
-
Read a String value from the specified field.
- getString(int) - Method in class de.bezier.data.sql.SQL
-
Read a String value from the specified field.
- getTableNames() - Method in class de.bezier.data.sql.MySQL
-
- getTableNames() - Method in class de.bezier.data.sql.PostgreSQL
-
- getTableNames() - Method in class de.bezier.data.sql.SQL
-
Get names of available tables in active database,
needs to be implemented per db adapter.
- getTableNames() - Method in class de.bezier.data.sql.SQLite
-
- getTime(String) - Method in class de.bezier.data.sql.SQL
-
Read a java.sql.Time value from the specified field.
- getTime(int) - Method in class de.bezier.data.sql.SQL
-
Read a java.sql.Time value from the specified field.
- getTimestamp(String) - Method in class de.bezier.data.sql.SQL
-
Read a java.sql.Timestamp value from the specified field.
- getTimestamp(int) - Method in class de.bezier.data.sql.SQL
-
Read a java.sql.Timestamp value from the specified field.
- getValuesFromObject(SQL, Field[], Method[], Object) - Static method in class DeBezierDataSQL
-
- saveToDatabase(Object) - Method in class de.bezier.data.sql.SQL
-
Take an object, try to find table name from object name (or look it up),
get fields and getters from object and pass that on to
insertUpdateIntoDatabase(table, columns, values).
- saveToDatabase(String, Object) - Method in class de.bezier.data.sql.SQL
-
Takes a table name and an object and tries to construct a set of
columns names from fields and getters found in the object.
- server - Variable in class de.bezier.data.sql.SQL
-
- setDebug(boolean) - Method in class de.bezier.data.sql.SQL
-
Turn some debugging on/off.
- setFromRow(Object) - Method in class de.bezier.data.sql.SQL
-
Highly experimental ...
tries to map column names to public fields or setter methods
in the given object.
- setFromRow(SQL, Object) - Static method in class DeBezierDataSQL
-
- setNameMapper(NameMapper) - Method in class de.bezier.data.sql.SQL
-
Set the current NameMapper
- SQL - Class in de.bezier.data.sql
-
SQL library for Processing 2+
- SQL() - Constructor for class de.bezier.data.sql.SQL
-
Do not use this contructor.
- SQL(PApplet, String) - Constructor for class de.bezier.data.sql.SQL
-
You should not directly use the SQL.class instead use the classes for your database type.
- SQL(PApplet, String, String, String, String) - Constructor for class de.bezier.data.sql.SQL
-
You should not directly use the SQL.class instead use the classes for your database type.
- SQLite - Class in de.bezier.data.sql
-
SQLite wrapper for SQL library for Processing 2+
- SQLite(PApplet, String) - Constructor for class de.bezier.data.sql.SQLite
-
Creates a new SQLite connection.
- SQLite(PApplet, String, String, String, String) - Constructor for class de.bezier.data.sql.SQLite
-
Creates a new SQLite connection, same as SQLite( PApplet, String )
- statement - Variable in class de.bezier.data.sql.SQL
-