Andras Lasso
Andras Lasso
Category cannot be `RediMinds` (a category only makes sense if it is expected to contain a number of different extensions). I would recommend `Informatics` (the similar `flywheel` extension was added...
Probably you need to start the test with uploading your test data set (if not available on the server already).
Each `:memory:` data base is a different instance, so you won't be able to connect to in-memory database via low-level sqlite3 library calls. If you create a database file and...
List of queried fields are defined here: https://github.com/commontk/CTK/blob/2a7851a405bda83639c6bc43dee7aa1e0a4928d7/Libs/DICOM/Core/ctkDICOMQuery.cpp#L306-L317 https://github.com/commontk/CTK/blob/2a7851a405bda83639c6bc43dee7aa1e0a4928d7/Libs/DICOM/Core/ctkDICOMQuery.cpp#L439-L445 It could be nice to have an API to edit this list, maybe by adding the tags in the `tagsToPrecache` list...
Using low-level sqlite3 API breaks the encapsulation: exposes private implementation details that are subject to change at any time. It just means that your code can break anytime when we...
There are CTK table widgets that can display the contents of database tables, so it should not be necessary to create and manually populate generic table widgets. > seriesForStudies in...
Can you also add code that you used to create tempDb?
Sorry for keep asking, but I would need a complete script that I can copy-paste into Slicer's Python console. Please include everything - server name, etc. and no `...`-s.
Have you only received a single item in `studyList`? Are the `StudyInstanceUID` values in the `studyList` correct?
This looks good. Those hardcoded `[0]`-s did not look good. Also note that dicomRetrieve stores the received series in the main database, not in tempDb and not all IDs are...