#!/bin/sh ##gcc-6##debian-9.13,buildin glibc version is 2.24######################################cat <<eof>>/etc/profileexport DISPLAY=192.168.157.1: ...
分类:
数据库 时间:
2020-07-29 00:45:50
阅读次数:
120
02.SELECT from Nobel Tutorial 注意:where语句中对表示条件的需要用单引号, 下面的译文使用的是有道翻译如有不正确,请直接投诉有道 01.Change the query shown so that it displays Nobel prizes for 1950. ...
分类:
其他好文 时间:
2020-07-28 22:41:34
阅读次数:
82
文章内容来源于Programming Hub的学习记录,本人整理添加了中文翻译,如有侵权,联系本人删除 Variables C语言中的变量 Let's extend our mainfunction from the first topic. What if we want to print the ...
分类:
编程语言 时间:
2020-07-28 22:40:48
阅读次数:
82
Mysql 数据库语句 1、说明:创建数据库CREATE DATABASE database-name2、说明:删除数据库drop database dbname3、说明:备份sql server 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk ...
分类:
数据库 时间:
2020-07-28 22:39:55
阅读次数:
92
一.数据库的创建: 创建一个名称为mydb1的数据库 CREATE DATABASE mydb1; 创建一个使用utf8字符集的mydb2数据库。 CREATE DATABASE mydb2 CHARACTER SET utf8; 创建一个使用utf8字符集,并带比较规则的mydb3数据库。 CRE ...
分类:
数据库 时间:
2020-07-28 22:36:24
阅读次数:
122
Hystrix(服务熔断等) 分布式系统面临的问题 复杂的分布式体系结构中的应用程序有数十个依赖关系,每个依赖关系在某些时候将有不可 避免的失败! 服务雪崩 多个微服务之间调用的时候,假设微服务A调用微服务B和微服务C,微服务B和微服务C又调用其他的微服务,这就是所谓的“扇出”,如果扇出的链路上某个 ...
分类:
编程语言 时间:
2020-07-28 22:06:01
阅读次数:
63
废话不多说了。一切见:setup-oracle11g.sh #!/bin/sh ##gcc-8 ###################################### cat <<eof>>/etc/profile export DISPLAY=192.168.157.1:0 alias cl ...
分类:
数据库 时间:
2020-07-28 17:09:12
阅读次数:
86
/// <summary> /// 防XSS攻击 /// date:2020-07-28 /// </summary> public class XssFilter : ActionFilterAttribute { private const string strRegex = @"<[^>]+? ...
分类:
其他好文 时间:
2020-07-28 16:59:08
阅读次数:
62
1、数据库查询的三种方式 正向查询: (1)获取全部数据all v1=models.UserInfo.objects.all().first() #取出Querryset类型数据,里面是对象,需循环取出 v1.ut #跨表,ut是外键 (2)只取部分字段value, 外键__字段 v2=models ...
分类:
数据库 时间:
2020-07-28 16:57:44
阅读次数:
67
Given two strings s1, s2, find the lowest ASCII sum of deleted characters to make two strings equal. Example 1: Input: s1 = "sea", s2 = "eat" Output: ...
分类:
其他好文 时间:
2020-07-28 14:45:21
阅读次数:
310