padhia

Results 8 comments of padhia

I think I now know the circumstances under which this problem occurs. If any segment of the script's path begins with `.` (period) and if the script is invoked outside...

Thank you for the link. Please consider adding TOML to a future version of the CLI to make generating TOML files easier.

Thank you for your quick response! Now it makes sense why `scala-cli` might have been left out of *use the chosen JRE*. I like your suggestion -- even though one...

I ran into this issue with Pylance. There seems to be an inconsistency between the type signature and the actual source code definition. The type signature shows `clustering_keys` as a...

ODBC Driver Manager consults `odbcinst.ini` to figure out available drivers. You might want to try setting an environment variable like below and see if that helps. ```bash export ODBCINST=/opt/teradata/client/ODBC_64/odbcinst.ini ```

I second OP's request. Standalone `tdodbc` and `tdrest` as python DB API compliant modules have more appeal in certain situations. While `DevOps` is great, but unless it becomes part of...

What version of ODBC driver are you using? I had encountered a similar error #90 when using the new Simba drivers which since has been fixed in the later updates.

I should add that the integral SQL data types are better represented by python `int` (also `long` in python2) and python `float` to represent SQL `real` data types instead of...