Three.js实现小米 su7 压缩后的模型加载
预览: https://threehub.cn/#/codeMirror?navigationThreeJS&classifybasic&idgltfOptLoader
import * as THREE from three
import { OrbitControls } from three/examples/jsm/controls/OrbitControls.js
impo…
介绍
创建只有查询权限的数据库账号。
创建语句
创建test账号,密码111111,对数据库a2所有表,只有查询权限
CREATE USER test% IDENTIFIED BY 111111;
SET PASSWORD FOR test% PASSWORD(111111);
GRANT Select ON a2.* TO test%;