UNPKG

react_sqlconnectionpackage

Version:

This is for to connect SQLite database connection in android and ios

29 lines (18 loc) 531 B
// Created by react-native-create-bridge import { NativeModules } from 'react-native' const { SQLConnection } = NativeModules export default { execute (param1) { return SQLConnection.execute(param1) }, CreateTables(test,temp) { return SQLConnection.CreateTables(test,temp) }, getCountRows(param1,param2,param3){ return SQLConnection.getCountRows(param1,param2,param3); }, Select(param1,param2){ return SQLConnection.Select(param1,param2); }, EXAMPLE_CONSTANT: SQLConnection.EXAMPLE_CONSTANT }