added ability to use filters to stop certain records from being cached, fixed insert bug due to binding instants to its default timestamp

This commit is contained in:
Tim Chamberlain
2023-03-13 20:02:37 -05:00
parent ec05f7ab7e
commit e0f5c3ff49
5 changed files with 96 additions and 9 deletions

View File

@ -739,7 +739,7 @@ public class QueryManager
}
else if(value instanceof Instant i)
{
statement.setString(index, i.toString());
statement.setString(index, i.toString().replaceAll("T", " ").replaceAll("Z", ""));
return (1);
}
else if(value instanceof LocalDate ld)