sherrysack关注 2017.10.24 13:02:25字数 76阅读 2,394 While I was trying to download wine1.7 on Ubuntu, after I add the related repository, and execute sudo a ...
分类:
Web程序 时间:
2020-06-23 13:44:59
阅读次数:
82
Oracle12C创建scott账户 具体步骤: 打开SqlPlus 输入用户名和密码用户名:sys口令:sys as sysdba 创建c##scott用户CREATE USER c##scott IDENTIFIED BY tiger ; 为用户授权GRANT CONNECT,RESOURCE, ...
分类:
数据库 时间:
2020-06-23 13:32:33
阅读次数:
68
MySQL-错误:2059-Authentication plugin 'caching_sha2_password' cannot be loaded 一 现象 使用docker镜像创建容器后,mysql测试连接不成功 二 原因 网上查询得到原因:在mysql8之前的版本中加密规则为mysql_n ...
分类:
数据库 时间:
2020-06-22 22:42:23
阅读次数:
130
1 protected static string DecryptAes(string input, string key) 2 { 3 var encryptedBytes = Convert.FromBase64String(input); 4 5 byte[] pwdBytes = getKe ...
分类:
编程语言 时间:
2020-06-22 19:16:36
阅读次数:
91
var controlSchedulesRepository = Abp.Dependency.IocManager.Instance.Resolve<Configuration.IAppConfigurationAccessor>(); controlSchedulesRepository.Con ...
分类:
移动开发 时间:
2020-06-22 14:43:01
阅读次数:
69
import pymysql import pandas as pd import uuid import datetime import random conn = pymysql.connect( host = '127.0.0.1', user = 'root', password = '12 ...
分类:
数据库 时间:
2020-06-22 14:40:47
阅读次数:
99
下载附件后,直接给出了p,q,e n = 773520893984898507968061463358178227437114815729335290490531331540941846732272670284818953272149012170851769784825594825465619279 ...
分类:
Web程序 时间:
2020-06-22 12:29:08
阅读次数:
56
本来很简单的一个功能怎么导出都是乱码。 添加 error_reporting(E_ALL ^ E_NOTICE) ini_set("display_errors",'"on") PHP提示: Cannot modify header information - headers already sen ...
分类:
Web程序 时间:
2020-06-22 01:52:02
阅读次数:
92
1.GRANT 授予权限 --常用的系统权限集合 CONNECT(基本的连接), RESOURCE(程序开发), DBA(数据库管理) --常用的数据对象权限有以下五个: ALL ON 数据对象名, SELECT ON 数据对象名, UPDATE ON 数据对象名,DELETE ON 数据对象名, ...
分类:
数据库 时间:
2020-06-22 01:38:15
阅读次数:
103
使用workbeach直接导入csv 下面这个导入按钮有的表有,有的表没有,需要看一下表的设定。 使用数据库原生数据库连接导入 1、下载第三方包pymysql 2、编写代码 import pymysql conn = pymysql.connect( host = '127.0.0.1', user ...
分类:
数据库 时间:
2020-06-21 23:37:55
阅读次数:
89