mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 04:24:21 +01:00
## Summary Implemented Calendar-based Date/Time/Timestamp getter methods in JDBC4ResultSet to support timezone conversions. ## Changes - Implemented `getDate(int, Calendar)` and `getDate(String, Calendar)` - Implemented `getTime(int, Calendar)` and `getTime(String, Calendar)` - Implemented `getTimestamp(int, Calendar)` and `getTimestamp(String, Calendar)` - Fixed timezone conversion logic (changed from subtraction to addition) - Added comprehensive test cases for all implemented methods Test Results - All tests passed successfully - New tests validate timezone conversion with UTC and Seoul (UTC+9) Reviewed-by: Kim Seon Woo (@seonWKim) Closes #3607