SQLite Forum

SQLite3 extensions: extension-functions.c in Windows doesn't load
Login
I have sqlite3 3.33.0 in Windows 10 and I would like to include some extensions for it.

I managed to include the extension uuid.c: I compiled in Windows and it loaded and functioned properly in sqlite3.

However, I didn't manage to successfully load the extension extension-functions.c in the system.

Compilation:
```
cl extension-functions.c -link -dll -out:libsqlitefunctions.dll
```

(compiles successfully)

Loading in sqlite3:
```
.load ./libsqlitefunctions.dll
Error: Impossível localizar o procedimento especificado.
```
(the error says: Impossible localize specified procedure)
(I also tried to write the file name in other formats...)

With the same extension files, I managed to install them in a linux computer successfully.

Do anyone knows what is the problem?

Which compilation statement should I run? Is this ok?