#react-native #sqlite
Вопрос:
Я получаю указанную ниже ошибку при попытке выполнить запрос.
Ошибка : «Ошибка: Аргумент несовместимого класса: класс java.util.HashMap не может быть передан в качестве аргумента параметру, ожидающему класс java.lang.Струна.»
Код :
useEffect(() =gt; { db.transaction( (tx) =gt; { console.log("this works"); tx.executeSql( "SELECT 1 FROM DUAL", [], (tx, results) =gt; { console.log("Query completed"); }, (tx, err) =gt; { console.log("Error" err); } ); }, (error) =gt; { console.log("Transaction error" error); } ); });
Бревна :
this works Transaction errorError: Argument of an incompatible class: class java.util.HashMap cannot be passed as an argument to parameter expecting class java.lang.String. this works Transaction errorError: Argument of an incompatible class: class java.util.HashMap cannot be passed as an argument to parameter expecting class java.lang.String. this works Transaction errorError: Argument of an incompatible class: class java.util.HashMap cannot be passed as an argument to parameter expecting class java.lang.String. this works Transaction errorError: Argument of an incompatible class: class java.util.HashMap cannot be passed as an argument to parameter expecting class java.lang.String. this works Transaction errorError: Argument of an incompatible class: class java.util.HashMap cannot be passed as an argument to parameter expecting class java.lang.String.
Пожалуйста, дайте мне знать, если вам понадобится что-нибудь еще. Спасибо