as I cannot recognize which object is
ConnectCntks I have to rely on guesswork
since you want to connect to SQLite, only TSQLConnector or TSQLite3Connection comes into question.
Based on the error message, I assume that you are using TSQLConnector. This type of connection acts as a kind of proxy connector that is able to handle different connections to different databases. However, the correct unit must be included in the uses clause (in your case SQLite3Conn) and the type of connection must be specified
ConnectCntks.ConnectorType:='SQLite3';
but these are only guesses because essential parts are not shown in your code