cd命令切换进安装包所在目录 cd /home/zawx/Centos7.9-Repos 开始安装 rpm -Uvh --force --nodeps *rpm 参考资料 https://www.runoob.com/linux/linux-comm-rpm.html ...
分类:
其他好文 时间:
2021-03-30 13:38:38
阅读次数:
0
一、什么是函数?这里的函数要和我们数学中的函数加以区分,python中的函数更像一种我们提前设置好功能,随取随用的工具。 二、为什么要用函数?在没有学习函数之前,我们编写的用户登陆系统,注册、登陆验证、功能全部是写在一个循环当中,这样写的后果有两个: 结构不清晰,很难读 代码很长,并且有很多重复性的 ...
分类:
编程语言 时间:
2021-03-30 12:58:18
阅读次数:
0
🌲Spring事务抽象 - 简介 🍁Spring事务抽象 - 模型 Spring提供了统一的事务抽象,可以让我们以统一的Api进行事务管理。具体的操作交给不同的TransitionManager实现完成。 🍂 Spring事务抽象 - 接口介绍 PlatformTransactionManag ...
分类:
编程语言 时间:
2021-03-29 12:08:01
阅读次数:
0
代码如下 -- 如果存在testtt_insert同名的存储过程,删除 DROP PROCEDURE IF EXISTS testtt_insert; DELIMITER ;; -- 创建一个存储过程 CREATE PROCEDURE testtt_insert () BEGIN -- 定义一个i, ...
分类:
其他好文 时间:
2021-03-29 11:39:37
阅读次数:
0
Dual-write overview Effective November 2020: Common Data Service has been renamed to Microsoft Dataverse. For more information, see Power Automate Blo ...
分类:
其他好文 时间:
2021-03-18 14:04:39
阅读次数:
0
简介: pip install pymssql==2.1.3 安装时报错如下: Running setup.py install for pymssql ... error ERROR: Command errored out with exit status 1: command: /python ...
分类:
数据库 时间:
2021-03-17 14:39:22
阅读次数:
0
我的配置环境是11.2.0.4, oracle.entityframeworkcore 的配置默认是使用12c,如果使用11G必须如下配置: services.AddDatabaseAccessor(options => { options.AddDbPool<DefaultDbContext>(n ...
分类:
数据库 时间:
2021-03-16 14:10:37
阅读次数:
0
#home { margin: 0 auto; width: 65%;/*原始65*/ min-width: 980px;/*页面顶部的宽度*/ background-color: rgba(245, 245, 245, 0.5); padding: 30px; margin-top: 50px; ...
分类:
其他好文 时间:
2021-03-15 11:21:43
阅读次数:
0
首先看一下man文档中这三个函数的定义: select函数: #include <sys/time.h> #include <sys/types.h> #include <unistd.h> int select(int nfds, fd_set *readfds, fd_set *writefds ...
分类:
其他好文 时间:
2021-03-15 10:42:26
阅读次数:
0
Java的数组 public class Demo18 { public static void main(String[] args) { int[] nums;//1.声明一个数组 nums = new int[5];//2.创建一个为5的数组 //通常可以合为一步 int[] nums = n ...
分类:
编程语言 时间:
2021-03-09 13:14:21
阅读次数:
0