mirafranc

Results 2 comments of mirafranc

can be easily fixed by following code update: ``` def _to_datetime(rs, col): java_val = rs.getTimestamp(col) if not java_val: return d = datetime.datetime.strptime(str(java_val)[:19], "%Y-%m-%d %H:%M:%S") d = d.replace(microsecond=int(str(java_val.getNanos()).zfill(9)[:6])) return str(d) ```...

After deeper investigation of DBeaver (works without issue), Spark and JayDeBeApi there are two ways how to execute SQL statement by JDBC: 1. As prepared statement (used by Spark and...