Expo-SQL
const printSearchTable = () => { db.transaction((tx) => { tx.executeSql( "select * from 'Literature'", [], (tx, res) => console.log( "Succeeded to get Contents From Table 'Literature'--->", res ), (tx, err) => console.log("Failed to get Contents From Table 'Literature'", err) ); }); };Cuando hago lo anterior me sale este error.
Failed to get Contents From Table 'Literature' Error: Row too big to fit into CursorWindow requiredPos=0, totalRows=2
¿Qué puedo hacer para que esto funcione? El tipo de datos para ambas filas es text . Esta es la declaración que usé para crear la tabla.
create table 'Literature'(abbr text primary key, value text)