1、首先查看当前数据库是否处于归档模式 可使用如下两种方式查看 1.1 select name, log_mode from v$database; log_mode的值为 NOARCHIVELOG 表示数据库处于非归档模式 log_mode的值为 ARCHIVELOG 表示数据库处于归档模式 1. ...
分类:
数据库 时间:
2021-05-24 05:27:16
阅读次数:
0
自己代码中的配置信息 //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
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
http://tool.chinaz.com/dns/?type=1&host=www.githubs.cn&ip= 输入网站网址,找到ttl值最小的,复制ip 找到C:\Windows\System32\drivers\etc文件夹下的hosts文件用记事本打开,在最后输入 #github (ip ...
分类:
Web程序 时间:
2021-05-24 00:56:07
阅读次数:
0
一、数据库常用简写命令 1、登录 psql -U pname -d database // pname 表示postgres的登录用户名,database 则表示要访问的数据库 2、查看所有的数据库 \l \l+ 列出所有数据库 (加 "+" 获取更多的信息) 3、查看所有的表(这里的红色部分根据你 ...
分类:
数据库 时间:
2021-05-24 00:06:16
阅读次数:
0
红色方框要引入箭头里面的 import sys sys.path.append('../../config/') from database import * print(MYSQL_CONFIG) ...
分类:
编程语言 时间:
2021-05-20 17:53:11
阅读次数:
0
RDS Scalabilty Scalabilty allows a solution to grow to increase storage, processing, memory, and netowrk operations By changing the class of an instan ...
分类:
数据库 时间:
2021-05-04 16:10:48
阅读次数:
0
05月 No great achievement is possible without persistent work. 没有不懈的努力,就不会有伟大的成就。——2021.05.01 You must take a vacation. You must have fun. 你一定要去度假,你一定要 ...
分类:
其他好文 时间:
2021-05-04 15:36:32
阅读次数:
0
EntityFramework是一种ORM框架,能够将数据库表的操作对应到实体上, 而不需要像传统的ADO.NET那样用Connection、Command、DataSet等对象结合SQL去操作数据库, 一个实体就是一个c#类,只不过这个类比较特殊,只有属性,没有方法。 下面我们就用EntityFr ...
分类:
Web程序 时间:
2021-05-03 12:59:39
阅读次数:
0
需求:在WPF程序运行过程中,会用WriteableBitmap对象绘制视频流中每一帧的图像,需要将某一帧图片显示在前端XAML页面,同时将该图片保存到数据库中,并且实现从数据库中取出图片显示。解决步骤如下: 1.前台显示图片 前台控件为image控件,需要指定控件的imagesoure属性,因此需 ...
分类:
数据库 时间:
2021-05-03 12:44:08
阅读次数:
0