Travel.Liu
Travel.Liu
mac os 10.9.3 sublime 3 Traceback (most recent call last): File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 73, in reload_plugin m = importlib.import_module(modulename) File "X/importlib/**init**.py", line 88, in import_module File "", line 1577,...
It seems to be a problem of uint64 to float64
Implemented in Go language based on the logic in Oracle JDBC [Oracle_Number](https://github.com/travelliu/go-ora/blob/mtk/v2/converters/oracle_number.go) But the performance is not as good as it is now, and the data is normal ``` goos:...
#243
Python Code https://github.com/oracle/python-oracledb/blob/main/src/oracledb/impl/thin/buffer.pyx
[trace.log](https://github.com/sijms/go-ora/files/9537658/trace.log)
#245 @sbinet you try this. https://github.com/travelliu/go-ora/blob/mtk/v2/converters/oracle_number.go I tried to rewrite it. convert number to string ``` case NUMBER: // Scale = 0 and Precision int64 if par.Scale == 0 &&...
@sbinet Let the author take a look. There are also performance issues. Converting to int64 has better performance than string, and uint64 will be added later.
It is not recommended to use uint64. The number of oracle is too large. A data error will occur when a calculation occurs to generate a float. see #245 If...
Give a sample. In my scenario, the number of the database is read into a text file, and string is the most suitable. Godror converts according to type, this is...