Yue Yang

Results 67 comments of Yue Yang

I met the same error: ```powershell > mamba Traceback (most recent call last): File "D:\miniforge3\Scripts\mamba-script.py", line 6, in from mamba.mamba import main File "D:\miniforge3\lib\site-packages\mamba\mamba.py", line 49, in import libmambapy as...

https://github.com/JuliaPackaging/Yggdrasil/pull/5944 has been merged. Now you can use [URI file name](https://www.sqlite.org/uri.html) to open SQLite database and specify the mode. ```julia julia> db = SQLite.DB("file:test.db?mode=ro") ERROR: SQLiteException("unable to open database file")...

Because your SQL includes multiple statements, and we haven't implemented `DBInterface.executemultiple` correctly so that the default behavior is only executing the first statement. A workaround is to execute single statement...

@rschwarz The solution is to avoid using `Highs_passColName` and `Highs_passRowName`. They are quite expensive and should not be called for each variable/column. The name of variable is set automatically at...

Thanks for detailed explanation. The key is that how to make the packaged DLLs loadable from python (when they are not in PATH). I think putting all generated DLLs of...

I understand your concerns. We need to make DLLs in `.pkgname.mesonpy.libs` loadable for all `.pyd` files in package files. Maybe we can inject a one-line call to [os.add_dll_directory](https://docs.python.org/3/library/os.html#os.add_dll_directory) to the...

The doc-only solution is OK, and meson-python should output warnings about this on Windows if DLLs are packaged.

It means that SQLite.jl needs to parse the table name(s) from SQL first, runs `PRAGMA table_list(tbl)` to tell whether the table is strict and `PRAGMA schema.table_xinfo(tbl)` to get types of...