react-native-sqlite

​React Native Sqlite3 绑定
授权协议 MIT
开发语言 Objective-C JavaScript
所属分类 数据库相关、 数据库驱动程序
软件类型 开源软件
地区 不详
投 递 者 冯敏达
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

react-native-sqlite 是 React Native 上的一个 sqlite3 绑定,它可以打开数据库并让 SQL 查询运行其中。目前还只是早期版本, API 还有可能会改变。

示例代码:

var sqlite = require('./react-native-sqlite');
sqlite.open("filename.sqlite", function (error, database) {
  if (error) {
    console.log("Failed to open database:", error);
    return;
  }
  var sql = "SELECT a, b FROM table WHERE field=? AND otherfield=?";
  var params = ["somestring", 99];
  database.executeSQL(sql, params, rowCallback, completeCallback);
  function rowCallback(rowData) {
    console.log("Got row data:", rowData);
  }
  function completeCallback(error) {
    if (error) {
      console.log("Failed to execute query:", error);
      return
    }
    console.log("Query complete!");
    database.close(function (error) {
      if (error) {
        console.log("Failed to close database:", error);
        return
      }
    });
  }
});
  • 使用的第三方插件:react-native-sqlite-storage  https://github.com/andpor/react-native-sqlite-storage 具体配置步骤,见github  参考例子见:https://blog.csdn.net/xukongjing1/article/details/70141157 本文主要描述具体的使用,包括对数据库版本升级的处理(上

  • 由于项目需要存储多条记录消息,所以这里记录如何使用React-Native操作SQLite数据库 我使用的是react-native-sqlite-storage   Android端的配置为: npm install react-native-sqlite-storage --save 安装完成后进行链接 react-native link react-native-sqlite-storage

  • React Native apps come with a simple user interface, code reusability, and allows for the production of stable apps. With React-Native being one of the most popular and ideal frameworks for creating c

  • 本文讲解的是使用react-native-sqilte-storage库,github地址:https://github.com/andpor/react-native-sqlite-storage 以下为一个使用示例,这里尤其要注意insert的时候,一定要检查插入的数据格式跟数据库表定义的格式是否一致,如果不一致,插入的时候会失败,而且没有任何错误,感觉像是sql没执行 我这里就遇到把一个ob

  • 在开发app涉及到聊天功能,聊天数据的存储就成了不可避免的问题。此时就需要使用 react-native-sqlite-storage 来解决这个问题。 1、环境 react-native 版本0.61、node.js版本12.15.0 2、安装 npm install --save react-native-sqlite-storage react-native0.61版本默认link,是不需要

  • 最近因为项目的需要,看了一下react-native-sqlite-stroage,觉得还不错,跟大家分享一下 npm install --save react-native-sqlite-storage 在android/settings.gradle 新加 include ‘:react-native-sqlite-storage’ project(’:react-native-sqlite-

  • import React,{Component} from 'react'; import{ ToastAndroid, NativeModules, Alert, BackHandler } from 'react-native'; import SQLiteStorage from 'react-native-sqlite-storage'; SQLiteS

  • 1.安装 命令行进入到ReactNative项目根目录下执行 npm install react-native-sqlite-storage --save 2.进行全局Gradle设置 编辑 android/settings.gradle文件,添加以下内容 include ':react-native-sqlite-storage' project(':react-native-sqlite-st

  • 一、什么是CodePush CodePush是一个微软开发的云服务器。通过它,开发者可以直接在用户的设备上部署手机应用更新。CodePush相当于一个中心仓库,开发者可以推送当前的更新(包括JS/HTML/CSS/IMAGE等)到CoduPush,然后应用将会查询是否有更新。 二、在CodePush服务器上注册APP 1、安装 code-push-cli npm install -g code-p

 相关资料
  • 我不是新来的土生土长的。在开始之前,我已经通过了很多教程。我正在尝试在我的应用程序中建立商店,当需要时可以通过应用程序的屏幕访问。 这是我的文件结构。 index.ios.js /app/index.js /app/store/database.js /app/store/userstore.js index.ios.js /app/index.js /app/store/userstore.js

  • 我正在构建一个react本机应用程序。昨天我成功地运行了< code>cd android 如何使其在调试模式下再次正常工作?

  • 本文向大家介绍react-native 启动React Native Packager,包括了react-native 启动React Native Packager的使用技巧和注意事项,需要的朋友参考一下 示例 在最新版本的React Native上,无需运行打包程序。它将自动运行。 默认情况下,这将在端口8081上启动服务器。要指定服务器所在的端口            

  • 百度移动统计SDK支持使用react native框架的H5页面统计,封装好的插件已经在github上开源,相关用法具体请参考:https://github.com/BaiduMobileAnalysis/baidumobstat-react-native。

  • The React Native environment has a lot of little quirks, so this documentation is aimed at helping smooth those over. Please feel free to create issues on GitHub for recommendations and additions to t

  • React Native 可以基于目前大热的开源JavaScript库React.js来开发iOS和Android原生App。而且React Native已经用于生产环境——Facebook Groups iOS 应用就是基于它开发的。 React Native的原理是在JavaScript中用React抽象操作系统原生的UI组件,代替DOM元素来渲染,比如以<View>取代<div>,以<Ima