1.首先在SqlServer中创建存储过程: if OBJECT_ID('usp_t013_inset_process_log') is not null drop procedure usp_t013_inset_process_log go create procedure usp_t013_i ...
分类:
数据库 时间:
2019-12-15 20:04:03
阅读次数:
97
grpc是rpc框架的一种,定义了远程方法调用的方式。最近总结学习了一些关于grpc的知识,从rpc开始切入,写下这篇文章。 rpc是远程过程调用(Remote Procedure Call,缩写为 RPC)。是一种计算机通信协议,该协议允许运行于一台计算机的程序调用另一台计算机的子程序,而程序员无... ...
分类:
其他好文 时间:
2019-12-12 23:43:25
阅读次数:
191
1.面向过程与面向对象 1.1面向过程(Procedure Oriented 简称PO :像C语言): 面向过程注重过程的。当解决一个问题的时候,面向过程会把事情拆分成: 一个个函数和数据(用于方法的参数) 。然后按照一定的顺序,执行完这些方法(每个方法看作一个个过程),等方法执行完了,事情就搞定了 ...
分类:
其他好文 时间:
2019-12-12 19:36:15
阅读次数:
52
链接: https://vjudge.net/problem/LightOJ 1322 题意: In Computer Science Trie or prefix tree is a data structure which is usually used to store some string ...
分类:
其他好文 时间:
2019-12-10 22:42:47
阅读次数:
120
/*查询某个表所涉及的Procedure,Package,Function*/select name,type,referenced_owner,referenced_name,referenced_typefrom user_dependencieswhere referenced_name='M ...
分类:
其他好文 时间:
2019-12-05 13:05:06
阅读次数:
82
1.决定再重新读一遍sv论文。 2.MMD:https://blog.csdn.net/a1154761720/article/details/51516273 3.pytorch学习 中 torch.squeeze() 和torch.unsqueeze()的用法 https://blog.csdn ...
分类:
其他好文 时间:
2019-12-03 01:43:21
阅读次数:
155
什么是存储过程?使用存储过程的优缺点? 存储过程(Stored Procedure)是一组为了完成特定功能的SQL 语句集,经编译后存储在数据库(经过第一次编译后再次调用不需要再次编译)。 注意:用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它。存储过程是数据库中的一个重要对象 ...
分类:
数据库 时间:
2019-12-02 17:16:23
阅读次数:
95
1 核心的两个API函数:GetSystemDefaultLangID 和 VerLanguageName。 GetSystemDefaultLangID:获得系统默认语言的ID VerLanguageName: 通过语言的ID转换为语言的名称 2 还可以通过获得系统本地信息来获取语言环境参数 Ge ...
分类:
编程语言 时间:
2019-12-02 13:39:03
阅读次数:
138
源码如下 !/bin/sh 根据进程名杀死进程 if [ $ lt 1 ] then echo "缺少参数:procedure_name" exit 1 fi PROCESS= for i in $PROCESS do echo "Kill the $1 process [ $i ]" kill 9 ...
分类:
系统相关 时间:
2019-12-01 19:12:12
阅读次数:
138
Create Table create.sql Target: mariadb Ver 15.1 Distrib 10.4.10 MariaDB, for Linux (x86_64) using readline 5.1 Usage: mariadb uroot p 0 DO SELECT CON ...
分类:
数据库 时间:
2019-12-01 16:33:20
阅读次数:
112