Traceback (most recent call last):
File "c:\Python sofistik1\samlet pakke\Sofistik_Func.py", line 29, in <module>
myDLL = cdll.LoadLibrary(r"C:\Program Files\SOFiSTiK\2024\SOFiSTiK 2024\interfaces\64bit\sof_cdb_w-2024.dll")
File "C:\Program Files\Python313\Lib\ctypes\__init__.py", line 471, in LoadLibrary
return self._dlltype(name)
~~~~~~~~~~~~~^^^^^^
File "C:\Program Files\Python313\Lib\ctypes\__init__.py", line 390, in __init__
self._handle = _dlopen(self._name, mode)
~~~~~~~^^^^^^^^^^^^^^^^^^
FileNotFoundError: Could not find module 'C:\Program Files\SOFiSTiK\2024\SOFiSTiK 2024\interfaces\64bit\sof_cdb_w-2024.dll' (or one of its dependencies). Try using the full path with constructor syntax.
The file “sof_cdb_w-2024.dll” is very obviously in the right location with the right name, i am thinking its something with the dependencies, but i am running out of options here. Anyone have experience with this error?
I figured it out. Even though i was using a python version newer than 3.8 with the old way of calling .dll before, i had to update to the new function for calling .dll.
Morten, yes i made my own console programme to read cdb based on this example
I made a sidebar with error methods
I get these errors
I unlocked the base cdb but it still doesn’t open I don’t understand what the problem is.
The methods generate the following errors.
Error: CDB cannot be read! Status: 3 (Error reading/opening CDB)
CDB path: D:\1.cdb
Use absolute path: False
Open mode: 0
Create copy: False
Reset CDB: False
File attributes: Archive
File size: 58446976 bytes
Last modified time: 03/04/2025 17:18:07
Bytes read from header: 64
First bytes of the file (ASCII): V 5.01 SOFISTIK-CDB Datenbank? ?? ?? ? Z` (
File is used by another process: False
Attempt to open CDB with mode 0
Initialisation result: 0
Attempting to open CDB with mode 1
Initialisation result: 1
Status: 3
Status value: Error reading/opening CDB
Status after flush: 3
CDB closed before next attempt
Attempt to open CDB with mode 99
Initialisation result: 1
Status: 3
Status value: Error reading/opening CDB
Status after flush: 3
CDB closed before next attempt
CDB closed
Again, i dont know about C#, but you could switch to python to access the .cdb and get data, once you have data you can run your c#.
That would require two scripts, one python for data retrival, and one in c# for data handling.