react-native-sqlite-storage - 没有这样的表

时间:2018-05-20 23:18:32

标签: sqlite react-native react-native-android

有人知道连接react-native-sqlite-storage的最佳方法吗?我的调试器在查询后得到“没有这样的表:nameOfTable(代码1)”。

我应该从名为“person”的表中获取“id”,“name”和“last name”。 我已连接位于“/android/app/src/main/assets/mioDB.db”的预填充数据库(“mioDB”)。

这是我的小代码:

import React,{Component} from 'react';
import {TextInput,View,Text,TouchableOpacity} from 'react-native';
import { openDatabase } from "react-native-sqlite-storage";

let mioDB = openDatabase('mioDB');

class App extends Component{
  constructor(props){
    super(props);
    this.state={
      name:'',
      lastName:''
    };
  }

  showData=()=>{
    alert('name: '+this.state.name+' lastName: '+this.state.lastName);
  };

  listOfNames=()=>{
    try{
      mioDB.transaction((statement)=>{
        console.log('****************');
        statement.executeSql('SELECT * FROM person',[],(statement,results)=>{
          console.log('****************');
          var len = results.rows.length;
            for (let i = 0; i < len; i++) {
              let row = results.rows.item(i);
              console.log(`Record: ${row.name}`);
            }
        });
      });
    }catch(error){
      alert(error);
    }    
  };    

  render(){    
    return(
      <View style={{marginTop:100}}>
        <TextInput style={{fontSize:20}} placeholder='name' onChangeText={(text)=>this.setState({name:text})}/>
        <TextInput style={{fontSize:20}} placeholder='lastName' onChangeText={(text)=>this.setState({lastName:text})}/>
        <TouchableOpacity style={{width:150,height:50}} onPress={this.showData}><Text>Create db</Text></TouchableOpacity>
        <TouchableOpacity style={{width:150,height:50}} onPress={this.listOfNames}><Text>Show database</Text></TouchableOpacity>
      </View>
    );
  }
}
export default App;

from the debugger

我不知道哪里出错,因为连接系统很容易

1 个答案:

答案 0 :(得分:0)

根据文档(react-native-sqlite-storage),预先填充的文件应位于www目录下,但您共享的路径不在www目录下。此外,对于预先填充的DB,openDatabase采用

形式的对象
{name : "testDB", createFromLocation : "~data/mioDB.db"}

此处datawww目录的子目录。

请进行这两项更改并尝试。