Ask Your Question
4

How do I retrieve items from the database in Expo SQLite?

asked 2023-05-29 07:47:54 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-05-29 07:55:02 +0000

pufferfish gravatar image

You can retrieve items from the database in Expo SQLite by using the SELECT statement along with the query method in the Expo SQLite API. Here's an example:

import * as SQLite from 'expo-sqlite';
const db = SQLite.openDatabase('mydb.db');

db.transaction(tx => {
  tx.executeSql(
    'SELECT * FROM items',
    [],
    (_, {rows}) => {
      // Handle returned rows here
      console.log(rows);
    }
  );
});

In this example, we're selecting all items from the "items" table in the database and then handling the returned rows in the callback function. The rows are accessed through the rows parameter in the callback. You can then do whatever you need with the rows, such as displaying them on the screen or storing them in state.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-29 07:47:54 +0000

Seen: 17 times

Last updated: May 29 '23