UWP Create table very slow

Hi @Sander

You are seeing a slow down in performance because you are creating the SQLiteConnection within the for loop. Opening a connection to a SQLCipher database is slow by design due to the key derivation process. Try moving the block for creating the connection and applying the license (this only needs to be once) outside of the for block. More information regarding SQLCipher performance can be found here.