Windows certificate set error using sqlite in class library

In my Windows Store application, I use a class library that uses SQlite for Windows Runtime 3.7.15.2. I used Tim Heuers instructions here . My application works without problems, application packages are created without problems, but during the Windows certification process I get the same errors all the time that I try.
Errors:

- sqlite3_bind_blob in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_bind_double in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_bind_int in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - API sqlite3_bind_int64 in sqlite3.dll is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_bind_null in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_bind_parameter_index in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - API sqlite3_bind_text16 in sqlite3.dll is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_busy_timeout in sqlite3.dll API is not supported for this application type. 
.dll calls this API.
 - sqlite3_changes in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_close in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_column_blob in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_column_bytes in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - API sqlite3_column_count in sqlite3.dll is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_column_double in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_column_int in sqlite3.dll API is not supported for this application type. .dll calls this API.
 - sqlite3_column_int64 API in sqlite3.dll is not supported for this application type. .dll calls this API.
 - sqlite3_column_name API in sqlite3.dll is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_column_name16 in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_column_text in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - API sqlite3_column_text16 in sqlite3.dll is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_column_type in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_config in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_errmsg16 in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_finalize in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_last_insert_rowid in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_open in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_open16 in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_open_v2 in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_prepare_v2 in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_reset in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.
 - sqlite3_step in sqlite3.dll API is not supported for this application type. LibraryName.dll calls this API.

, . Sqlite API   , , ...

+5

All Articles