--公司注册 if exists(select * from Sysobjects where name='usp_CompanyRegister') drop procedure usp_CompanyRegister; go create procedure usp_CompanyRegiste ...
分类:
其他好文 时间:
2021-06-28 18:47:19
阅读次数:
0
jpa操作数据库 注意:数据库采用的是本机数据库,下面是建表语句及初始化数据: SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- -- Table structure for user -- DROP TABLE IF EXISTS `user`; ...
分类:
数据库 时间:
2021-06-24 17:30:09
阅读次数:
0
今天使用OpenSSL创建SSL证书,创建完根证书,然后继续创建SSl证书时,出现错误:problem creating object tsa_policy1=1.2.3.4.1 6812:error:08064066:object identifier routines:OBJ_create:oi ...
查询数据库中的重复数据——MySQL数据库 1、建表语句 DROP TABLE IF EXISTS `t_people`; CREATE TABLE `t_people` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `people_no` ...
分类:
数据库 时间:
2021-06-16 17:52:07
阅读次数:
0
在开发.NET应用中,使用 System.Drawing.Image.Save 方法而导致“GDI+ 中发生一般性错误”的发生,一般是 发生 img.Save("d:\AAA\bbbb") 通常有以下三种原因:1. 相应的帐户没有写权限。解决方法:赋予 NETWORK SERVICE 帐户以写权限。 ...
分类:
其他好文 时间:
2021-06-11 19:16:37
阅读次数:
0
主类: public class DijkstraAlgorithm { public static void main(String[] args) { char[] vertex = { 'A', 'B', 'C', 'D', 'E', 'F', 'G' }; int[][] matrix = ...
分类:
编程语言 时间:
2021-06-08 22:44:44
阅读次数:
0
in 和 exists区别 in 是把外表和内表作hash join,而exists是对外表作loop,每次loop再对内表进行查询。 一直以来认为exists比in效率高的说法是不准确的。 如果查询的两个表大小相当,那么用in和exists差别不大。 如果两个表中一个较小,一个是大表,则子查询表大 ...
分类:
其他好文 时间:
2021-06-07 20:57:52
阅读次数:
0
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:
编程语言 时间:
2021-06-07 20:42:48
阅读次数:
0
Harbor 简介 Harbor 是 VMware 公司开源的企业级 Docker Registry 项目,其目标是帮助用户迅速搭建一个企业级的 Docker Registry 服务。 它以 Docker 公司开源的 Registry 为基础,提供了管理 UI,基于角色的访问控制(Role Base ...
分类:
其他好文 时间:
2021-06-07 20:32:01
阅读次数:
0
1、拦截器 1.1、概述 SpringMVC的处理器拦截器类似于Servlet开发中的过滤器Filter,用于对处理器进行预处理和后处理。开发者可以自己定义一些拦截器来实现特定的功能。 **过滤器与拦截器的区别:**拦截器是AOP思想的具体应用。 过滤器 servlet规范中的一部分,任何java ...
分类:
编程语言 时间:
2021-06-04 18:58:39
阅读次数:
0