The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R ...
分类:
其他好文 时间:
2021-06-24 18:32:12
阅读次数:
0
1.创建测试环境 1.1.新建用户和表 CREATE USER monkey01 IDENTIFIED BY monkey01; GRANT UNLIMITED TABLESPACE TO MONKEY01; GRANT CREATE SESSION TO MONKEY01; CREATE USER ...
分类:
其他好文 时间:
2021-06-24 18:31:39
阅读次数:
0
? 通过mycat和mysql的主从复制配合搭建数据库的读写分离,可以实现mysql的高可用性,下面我们来搭建mysql的读写分离。 1、一主一从 1、在node01上修改/etc/my.cnf的文件 #mysql服务唯一id,不同的mysql服务必须拥有全局唯一的id server-id=1 #启 ...
分类:
数据库 时间:
2021-06-24 18:29:36
阅读次数:
0
React.forwardRef 会创建一个React组件,这个组件能够将其接受的 ref 属性转发到其组件树下的另一个组件中。这种技术并不常见,但在以下两种场景中特别有用: 官方解释: https://react.docschina.org/docs/forwarding-refs.html#fo ...
分类:
其他好文 时间:
2021-06-24 18:28:21
阅读次数:
0
报错如下: Cannot set LC_ALL to locale en_US.UTF-8: No such file or directory 解决方式: apt-get install -y locales locale-gen en_US.UTF-8 ...
分类:
其他好文 时间:
2021-06-24 18:14:03
阅读次数:
0
关于timestamp的两属性CURRENT_TIMESTAMP 和ON UPDATE CURRENT_TIMESTAMP,使用示例如下: CREATE TABLE `upload_table` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID', ...
分类:
数据库 时间:
2021-06-24 18:07:30
阅读次数:
0
COCO 的jeson 文件: "images": [{"file_name": "811000171.jpg", "height": 720, "width": 1280, "id": 811000171}, {"file_name": "811000131.jpg", "height": 720 ...
分类:
其他好文 时间:
2021-06-24 18:06:36
阅读次数:
0
$('#gridTable').kendoGrid({ dataSource: { pageSize: 10, serverPaging: true, transport: { read: this.bind(function (options) { if (!options.data.pageSi ...
分类:
其他好文 时间:
2021-06-24 18:05:53
阅读次数:
0
Problem: Importing an Oracle 11g R2 Data Pump file containing an ArcSDE 10.x geodatabase encounters Oracle errors ORA-31693, ORA-02354, ORA-00600 Desc ...
分类:
其他好文 时间:
2021-06-24 18:01:26
阅读次数:
0
创建数据库: CREATE TABLE emp( eid INT , -- 员工编号 NAME VARCHAR(10), -- 姓名 age INT -- 年龄 ); 插入多条数据记录: (1)方法一:依次输入插入数据 INSERT INTO dept (eid,NAME,age) VALUES ( ...
分类:
数据库 时间:
2021-06-24 17:50:19
阅读次数:
0