public class SQLNeuralDataSet extends BasicMLDataSet
BasicMLDataSet.BasicMLIterator| Constructor and Description |
|---|
SQLNeuralDataSet(java.sql.Connection theConnection,
java.lang.String theSQL,
int theInputSize,
int theIdealSize)
Create a SQLNeuralDataSet based on the specified connection.
|
SQLNeuralDataSet(java.lang.String sql,
int inputSize,
int idealSize,
java.lang.String driver,
java.lang.String url,
java.lang.String uid,
java.lang.String pwd)
Construct a SQL dataset.
|
add, add, add, clone, close, get, getData, getIdealSize, getInputSize, getRecord, getRecordCount, isSupervised, iterator, openAdditional, setData, size, toListpublic SQLNeuralDataSet(java.sql.Connection theConnection,
java.lang.String theSQL,
int theInputSize,
int theIdealSize)
theConnection - The connection to use.theSQL - The SQL command to execute.theInputSize - The size of the input data.theIdealSize - The size of the ideal data.public SQLNeuralDataSet(java.lang.String sql,
int inputSize,
int idealSize,
java.lang.String driver,
java.lang.String url,
java.lang.String uid,
java.lang.String pwd)
sql - The SQL command to execute.inputSize - The size of the input data.idealSize - The size of the ideal data.driver - The driver to use.url - The database connection URL.uid - The database user id.pwd - The database password.