自己代码中的配置信息 //windows身份验证使用的 <appSettings> <add key="ConnctionStr" value="server=1.1.0.1;database=1;integrated security=true"/> </appSettings> //sql se ...
分类:
数据库 时间:
2021-05-24 01:39:34
阅读次数:
0
转至:https://blog.csdn.net/qq_38161040/article/details/108274161 用户多次密码输入错误达到一定值就会被锁定。 -- 用户锁定方法 alter user 数据库名 account lock; -- 用户解锁方法 alter user 数据库名 ...
分类:
数据库 时间:
2021-05-24 01:36:58
阅读次数:
0
转至:https://blog.csdn.net/weixin_37615080/article/details/80400239?utm_medium=distribute.pc_relevant_t0.none-task-blog-2~default~BlogCommendFromMachine ...
分类:
数据库 时间:
2021-05-24 01:33:38
阅读次数:
0
db_info = {'user': 'root', 'password': '123456', 'host': 'localhost', 'port': 3306, 'database': 'test' }'mysql+pymysql://%(user)s:%(password)s@%(host) ...
分类:
数据库 时间:
2021-05-24 01:23:49
阅读次数:
0
HelloWorld 随便新建一个文件夹,存放代码 新建一个Java文件 文件后缀名为.java Hello.java 【注意点】系统可能没有显示文件后缀名,需要手动打开 编写代码 public class Hello{ public static void main(String[]args){ ...
分类:
其他好文 时间:
2021-05-24 01:16:13
阅读次数:
0
Oracle数据库的初步学习 数据库的安装及其配置,使用默认选项进行安装即可 oracle的几种常见客户端 i. Web端:https://localhost:5500/em(浏览器需要flash插件) i. Oracle控制台:SQLplus i. Oracle自带的GUI:Sql Develop ...
分类:
数据库 时间:
2021-05-24 01:06:57
阅读次数:
0
函数名称 函数功能 函数名称 函数功能 system_user() 系统名称 concat() 没有分隔符的连接 user() 用户名 concat_ws() 含有分隔符的连接字符串 current_user() 当前用户名 group_concat() 连接一个组的所有字符串,并以逗号分隔每一条数 ...
分类:
数据库 时间:
2021-05-24 01:02:39
阅读次数:
0
Markdpwn 标题: 二级标题 三级标题 字体 helloword Hellowrld! Hellowrld! Hellowrld! 引用 选择狂神说Java,走向人生巅峰 分割线 图片 超链接 点击挑战小星博客 列表 a s a a s s 表格 | 代码 ? ...
分类:
其他好文 时间:
2021-05-24 00:45:59
阅读次数:
0
一份HAProxy配置文件 #全局配置 global #设置日志 log 127.0.0.1 local0 info #当前工作目录 chroot /usr/local/haproxy #用户与用户组 user haproxy group haproxy #运行进程ID uid 99 gid 99 ...
分类:
其他好文 时间:
2021-05-24 00:27:22
阅读次数:
0
Http 超文本传输协议 https(加密,更加安全) 传输协议经历的几个步骤 // http 超文本传输协议 https(加密,更加安全) // 前后端交互遵守的规则 /* => 步骤1 建立连接 基于Tcp/ip协议 三次握手 A(客户端) B(服务端) A问B 在吗? B确认 A能发 B能收 ...
分类:
Web程序 时间:
2021-05-24 00:20:22
阅读次数:
0