selecionar consulta no sqlite android

String temp_address="nothing";
    try
    {
        String selectQuery = "SELECT lastchapter FROM Bookdetails INTO"+temp_address+"WHERE bookpath=?";
        db.execSQL(selectQuery, new String[] { fileName });
        System.out.println(temp_address+" result of select Query");
    }

    catch(Exception e)
    {
        System.out.println(e+" is the error here");

    }
    finally
    {
        db.close();
    }

Logcat

android.database.sqlite.SQLiteException: near "bookpath": syntax error: , while compiling: SELECT lastchapter FROM Bookdetails INTOnothingWHERE bookpath=?

Eu só quero pegar o resultado da consulta acima para que a string armazenada no lastchapter esteja disponível em temp_address, por favor me ajude

eu sou novo no banco de dados sqlite android por favor me ajude

questionAnswers(3)

yourAnswerToTheQuestion