We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java.sql.Time does not provide the date (getDate() is deprecated); thus it does not seem to be possible to get the date from a Time condition:
java.sql.Time
getDate()
Time
rcdb/java/src/org/rcdb/model.kt
Line 180 in aaece87
Reproducer in groovy:
groovy
import org.rcdb.RCDB def db = RCDB.createProvider('mysql://[email protected]/rcdb') db.connect() def result = db.getCondition(5052, 'run_start_time') println "time = ${result.toTime()}" println "date = ${result.toTime().getDate()}" // fails
Is there some other way to get the date with the Java API?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
java.sql.Time
does not provide the date (getDate()
is deprecated); thus it does not seem to be possible to get the date from aTime
condition:rcdb/java/src/org/rcdb/model.kt
Line 180 in aaece87
Reproducer in
groovy
:Is there some other way to get the date with the Java API?
The text was updated successfully, but these errors were encountered: