Uses of Class
tilda.data.Connection_Data
-
Packages that use Connection_Data Package Description tilda.data._Tilda -
-
Uses of Connection_Data in tilda.data._Tilda
Methods in tilda.data._Tilda that return Connection_Data Modifier and Type Method Description Connection_DataTILDA__CONNECTION. copy()static Connection_DataTILDA__CONNECTION_Factory. create(java.lang.String id, java.lang.String driver, java.lang.String db, java.lang.String user, java.lang.String pswd, int initial, int max, java.util.List<java.lang.String> schemas)Creates a new object in memory, which you can subsequently#write()to the data store.static Connection_DataTILDA__CONNECTION_Factory. init(java.util.Map<java.lang.String,java.lang.String[]> Values, java.util.List<StringStringPair> Errors)The generic init method is typically run when there is a general data structure of data available, for example, a CSV data file read in memory, or run from a servlet using a Mapobject obtained from an ServletRequest object. static Connection_DataTILDA__CONNECTION_Factory. lookupByPrimaryKey(java.lang.String id)Lookup one record by the primary key: id.Methods in tilda.data._Tilda that return types with arguments of type Connection_Data Modifier and Type Method Description static ListResults<Connection_Data>TILDA__CONNECTION_Factory. lookupWhereActive(Connection C, int start, int size)Lookup records by the query 'Active' over .
The results are ordered by: id ascstatic ListResults<Connection_Data>TILDA__CONNECTION_Factory. lookupWhereAll(Connection C, int start, int size)Lookup records by the query 'All' over .
The results are ordered by: id ascstatic ListResults<Connection_Data>TILDA__CONNECTION_Factory. lookupWhereAllById(Connection C, int __start__, int __size__)Lookup records by the index 'AllById' over .
The results are ordered by: id ascprotected static ListResults<Connection_Data>TILDA__CONNECTION_Factory. readMany(Connection C, java.lang.String fullSelectQuery, int start, int size)static ListResults<Connection_Data>TILDA__CONNECTION_Factory. runSelect(Connection C, SelectQuery Q, int start, int size)Methods in tilda.data._Tilda with parameters of type Connection_Data Modifier and Type Method Description static voidTILDA__CONNECTION_Factory. toCSV(java.io.Writer out, Connection_Data obj)static voidTILDA__CONNECTION_Factory. toJSON(java.io.Writer out, Connection_Data obj, boolean fullObject)static voidTILDA__CONNECTION_Factory. toJSON(java.io.Writer out, Connection_Data obj, java.lang.String lead, boolean fullObject)static voidTILDA__CONNECTION_Factory. toJSON(java.io.Writer outWriter, Connection_Data obj, java.lang.String lead, boolean fullObject, boolean noNullArrays)Method parameters in tilda.data._Tilda with type arguments of type Connection_Data Modifier and Type Method Description static voidTILDA__CONNECTION_Factory. lookupWhereActive(Connection C, ObjectProcessor<Connection_Data> OP, int start, int size)Lookup records by the query 'Active' over .
The results are ordered by: id ascstatic voidTILDA__CONNECTION_Factory. lookupWhereAll(Connection C, ObjectProcessor<Connection_Data> OP, int start, int size)Lookup records by the query 'All' over .
The results are ordered by: id ascstatic voidTILDA__CONNECTION_Factory. lookupWhereAllById(Connection C, ObjectProcessor<Connection_Data> OP, int __start__, int __size__)Lookup records by the index 'AllById' over .
The results are ordered by: id ascstatic voidTILDA__CONNECTION_Factory. runSelect(Connection C, SelectQuery Q, ObjectProcessor<Connection_Data> OP, int start, int size)static voidTILDA__CONNECTION_Factory. toCSV(java.io.Writer out, java.util.List<Connection_Data> L, boolean includeHeader)static voidTILDA__CONNECTION_Factory. toJSON(java.io.Writer out, java.util.List<Connection_Data> L, java.lang.String lead, boolean fullList)static intTILDA__CONNECTION_Factory. writeBatch(Connection C, java.util.List<Connection_Data> L, int batchSize, int commitSize)
-