• uniapp 原生sqlite本地数据库管理 Ba-Sqlite


    简介(下载地址

    Ba-Sqlite 是一款原生sqlite数据库管理插件。支持创建表、删除表;增、删、改、查;事务控制;分页查询;批量删、改、查等等。

    • 支持多个数据库切换
    • 支持创建表、删除表
    • 支持增、删、改、查
    • 支持事务
    • 支持批量修改
    • 支持分页查询
    • 支持条件排序
    • 支持自定义条件,批量删、改、查
    • 支持查询当前表结构
    • 支持执行自定义sql
    • 支持返回数据总数(列表)
    • 支持自定义数据库路径

    效果展示

    在这里插入图片描述

    使用方法

    引入组件

    script 中引入组件

    	const sqlite = uni.requireNativePlugin('Ba-Sqlite')
    
    • 1

    调用示例

    script 中调用

    		data() {
    			return {
    				dbName: 'ba-db.db',
    				tableName: 'user',
    				columnNames: "[{name: '_id',type: 'int',isId: true,desc:'主键id'}, {name: 'name',type: 'text',desc:'姓名',notNull:true}, {name: 'sex',type: 'int',desc:'性别1:男 2:女 0:未知'}, {name: 'hobby',type: 'text',desc:'爱好'}]",
    				values: "[{_id: 1,name: '张三',sex: '1'}, {_id: 2,name: '李四',sex: '2'}]",
    				deleteIdKey: '_id',
    				deleteId: '1',
    				updateQueryKey: 'sex = ?',
    				updateQueryValue: "['2']",
    				updateContent: "{hobby: '逛街'}",
    				pageNum: 1,
    				pageSize: 10,
    				orderKey: "sex",
    				orderType: "desc",
    				dataResult: ""
    			}
    		},
    		methods: {
    			openOrCreate() { //打开或创建数据库(也可以用来切换多个数据库)
    				sqlite.openOrCreate({
    						'dbName': this.dbName,
    						//'dbPath': '/storage/emulated/0',//自定义数据库路径
    					},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			isHasDb() { //查询某个数据库是否存在
    				sqlite.isHasDb({
    						'dbName': this.dbName,
    					},
    					(res) => {
    						console.log(res);
    						let msg = res.msg;
    						if (res.ok) {
    							msg = res.isHasDb ? "存在" : "不存在";
    						}
    						uni.showToast({
    							title: msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			createTable() { //创建表
    				sqlite.createTable({
    						'tableName': this.tableName,
    						'columnNames': this.columnNames,
    					},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			deleteTable() { //删除表
    				sqlite.deleteTable({
    						'tableName': this.tableName,
    					},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			isHasTable() { //查询某个表是否存在
    				sqlite.isHasTable({
    						'tableName': this.tableName,
    					},
    					(res) => {
    						console.log(res);
    						let msg = res.msg;
    						if (res.ok) {
    							msg = res.isHasTable ? "存在" : "不存在";
    						}
    						uni.showToast({
    							title: msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			getTables() { //获取数据库所有表
    				sqlite.getTables({},
    					(res) => {
    						console.log(res);
    
    						this.dataResult = res.ok ? JSON.stringify(res) : '';
    
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			insert() { //插入数据
    				sqlite.insert({
    						'tableName': this.tableName,
    						'values': this.values,
    					},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			replace() { //更新数据
    				sqlite.replace({
    						'tableName': this.tableName,
    						'values': this.values,
    					},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			update() { //批量修改数据
    				sqlite.update({
    						'tableName': this.tableName,
    						'tableName': this.tableName,
    						'selection': this.updateQueryKey,
    						'selectionArgs': this.updateQueryValue,
    						'values': this.updateContent,
    					},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			deleteData() { //删除数据
    				sqlite.delete({
    						'tableName': this.tableName,
    						'idKey': this.deleteIdKey,
    						'idValue': this.deleteId,
    					},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			clearData() { //清空数据
    				sqlite.clear({
    						'tableName': this.tableName,
    					},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			query() { //查询数据
    				let orderBy;
    				if (this.orderKey && this.orderType) {
    					orderBy = this.orderKey + " " + this.orderType;
    				}
    				sqlite.query({
    						'tableName': this.tableName,
    						'orderBy': orderBy,
    					},
    					(res) => {
    						console.log(res);
    						this.dataResult = res.ok ? JSON.stringify(res) : '';
    
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			queryPage() { //分页查询
    				let orderBy;
    				if (this.orderKey && this.orderType) {
    					orderBy = this.orderKey + " " + this.orderType;
    				}
    				sqlite.queryPage({
    						'tableName': this.tableName,
    						'pageNum': this.pageNum,
    						'pageSize': this.pageSize,
    						'orderBy': orderBy,
    					},
    					(res) => {
    						console.log(res);
    
    						this.dataResult = res.ok ? JSON.stringify(res) : '';
    
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    			closeDb() { //关闭数据库
    				sqlite.closeDb({},
    					(res) => {
    						console.log(res);
    						uni.showToast({
    							title: res.msg,
    							icon: "none",
    							duration: 3000
    						})
    					});
    			},
    		}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236

    方法清单

    名称说明
    openOrCreate打开或创建数据库(也可以用来切换多个数据库)
    isHasDb查询某个数据库是否存在
    createTable创建表
    deleteTable删除表
    isHasTable查询某个表是否存在
    getTables获取数据库所有表
    insert插入数据
    replace更新数据
    update批量修改数据
    delete删除数据
    clear清空数据
    query查询数据
    queryPage分页查询
    execSQL执行sql语句(无返回)
    rawQuery自定义sql语句查询

    openOrCreate 方法参数

    打开或创建数据库(也可以用来切换多个数据库)

    属性名类型默认值说明
    dbNameString‘ba-db.db’数据库名称

    isHasDb 方法参数

    查询某个数据库是否存在

    属性名类型默认值说明
    dbNameString‘ba-db.db’数据库名称
    dbPathString默认自定义数据库路径,不传为默认路径(传值为应用可访问的手机本地路径)
    返回:
    {"isHasDb":false,"msg":"success","ok":true}
    
    • 1

    createTable 方法参数

    创建表

    属性名类型默认值说明
    tableNameString‘’表名
    columnNamesArray[]表结构(参考如下)
    表结构 columnNames
    属性名类型默认值说明
    nameString‘’字段名称
    typeString‘’字段类型(text、int)
    isIdBooleanfalse是否是主键(默认主键’_id’)
    isAutoBooleanfalse是否自增(仅主键)
    notNullBooleanfalse是否不能为空

    deleteTable 方法参数

    删除表

    属性名类型默认值说明
    tableNameString‘’表名

    isHasTable 方法参数

    查询某个表是否存在

    属性名类型默认值说明
    tableNameString‘’表名
    返回:
    {"isHasTable":false,"msg":"success","ok":true}
    
    • 1

    insert 方法参数

    插入数据

    属性名类型默认值说明
    tableNameString‘’表名
    valuesArray‘’需要插入的数据(json),如 [{_id: 1,name: ‘张三’,sex: ‘1’}]

    replace 方法参数

    更新数据

    属性名类型默认值说明
    tableNameString‘’表名
    valuesArray‘’需要更新的数据(json),如 [{_id: 1,name: ‘张三’,sex: ‘1’}]

    update 方法参数

    根据条件批量修改数据

    属性名类型默认值说明
    tableNameString‘’表名
    selectionString‘’查询的字段,如 ‘sex = ?’
    selectionArgsString[][]查询的字段的值,如 [‘1’]
    valuesObject{}批量更改的数据,如 {hobby: ‘逛街’}

    delete 方法参数

    可根据id删除,也可自定义selection条件删除

    属性名类型默认值说明
    tableNameString‘’表名
    idKeyString‘_id’id字段,默认 ‘_id’
    idValueStringid的值,如 1
    selectionString‘’查询的字段,如 ‘sex = ?’(注意selection有值时,idKey和idValue无效,)
    selectionArgsString[][]查询的字段的值,如 [‘1’]

    clear 方法参数

    清空表

    属性名类型默认值说明
    dbNameString‘ba-db.db’数据库名称
    tableNameString‘’表名

    query 方法参数

    查询数据

    属性名类型默认值说明
    dbNameString‘ba-db.db’数据库名称
    tableNameString‘’表名
    selectionString‘’查询的字段,如 ‘sex = ?’
    selectionArgsString[][]查询的字段的值,如 [‘1’]
    groupByString‘’对相同的数据进行分组
    havingString‘’
    orderByString‘’一个或多个列按升序或降序顺序排列数据
    limitString‘’限制返回的数据数量

    rawQuery 方法参数

    自定义sql语句查询

    属性名类型默认值说明
    sqlString‘’sql语句,如:select * from user

    execSQL 方法参数

    执行sql语句(无返回)

    属性名类型默认值说明
    sqlString‘’sql语句,如:UPDATE user SET hobby=‘美食’

    系列插件

    图片选择插件 Ba-MediaPicker文档

    图片编辑插件 Ba-ImageEditor文档

    文件选择插件 Ba-FilePicker文档

    应用消息通知插件 Ba-Notify文档

    应用未读角标插件 Ba-Shortcut-Badge文档

    应用开机自启插件 Ba-Autoboot文档

    扫码原生插件(毫秒级、支持多码)文档

    动态修改状态栏、导航栏背景色、字体颜色插件 Ba-AppBar文档

    原生sqlite本地数据库管理 Ba-Sqlite文档

    安卓保活插件 Ba-KeepAlive文档

    安卓快捷方式(桌面长按app图标) Ba-Shortcut文档

    自定义图片水印 Ba-Watermark文档

    视频压缩插件 Ba-VideoCompressor文档

    动态切换应用图标、名称(如新年、国庆等) Ba-ChangeIcon文档

  • 相关阅读:
    C++入门基础05:表达式(表达式基础、算术运算符与赋值运算符、逻辑关系运算符、成员访问运算符与条件运算符、位运算符、移位运算符与类型转换)
    制作一个简单HTML游戏网页(HTML+CSS)仿龙之谷网络游戏官网
    知识融合介绍
    vue - vue使用webpack图片压缩插件报 Cannot find module ‘gifsicle‘ 的问题解决
    NLP模型笔记2022-32:Sentence-BERT句子语义相似计算与相似句子聚类
    黑客技术(网络安全)自学2024
    LSTM 词语模型上的动态量化
    华为9.20笔试 复现
    2022 China Collegiate Programming Contest (CCPC) Weihai Site A J
    燃气安全如何保障?万宾燃气管网监测系统时刻感知管网运行态势
  • 原文地址:https://blog.csdn.net/u013164293/article/details/126773725