码迷,mamicode.com
首页 >  
搜索关键字:stored procedure    ( 4618个结果
FireDAC 下的批量 SQL 命令执行
一、{逐条插入} procedure TForm1.Button1Click(Sender: TObject); const strInsert = 'INSERT INTO MyTable(Name, Age) VALUES(:name, :age)'; begin // FDQuery1.Fet ...
分类:数据库   时间:2020-05-31 16:03:48    阅读次数:92
Portswigger-web-security-academy:stored_xss
stored_xss Stored XSS into HTML context with nothing encoded 题目要求 提交评论,调用alert函数 解题过程 直接祖传payload就行 Stored XSS into anchor href attribute with double ...
分类:Web程序   时间:2020-05-29 23:39:29    阅读次数:181
oracle存储过程
1、语法结构 create [or replace] procedure 过程名 --or replace 如果存储过程已经存在则覆盖替代原有的过程 ( p1 in|out datatype, 入参和出参两种参数 p2 in|out datatype, datatype表示出入参变量对应的数据类型 ...
分类:数据库   时间:2020-05-29 11:54:16    阅读次数:65
hadoop hdfs csv导入hive表
create table toys.test (id int, x0 double, x1 double, x2 double, x3 double) row format delimited fields terminated by ',' stored as textfile; 先在hive 数 ...
分类:其他好文   时间:2020-05-28 16:09:46    阅读次数:82
macos中gitk报错
报错信息如下: Error in startup script: unknown color name "lime" (processing "-fore" option) invoked from within "$ctext tag conf m2 -fore [lindex $mergecol ...
分类:系统相关   时间:2020-05-28 14:58:34    阅读次数:85
Ktag Review: Remap 2010 Golf GTI MK6
Have Ktag to remap 2010 Golf GTI MK6 with Bosch MED17.5 ECU. This article is available with the procedure. Open ECU… Connect the wires by following th ...
分类:其他好文   时间:2020-05-27 15:36:04    阅读次数:61
10.物理层概述
1.物理层结构 物理层被分成两个子层: 物理层汇聚过程(Physical Layer Convergence Procedure,简称PLCP)功能在于结合来自MAC帧与空中所传输的无线电波 子层以及物理媒体相关(Physical Medium Dependent,简称PMD)子层 物理层还包含了空 ...
分类:其他好文   时间:2020-05-27 10:32:27    阅读次数:69
mysql利用存储过程插入大量数据脚本
参考地址: https://blog.csdn.net/student__software/article/details/82048724 1.检查是否开启二进制日志 #查看是否开启二进制日志,ON表示开启,OFF表示没有开启 show variables like 'log_bin_trust_ ...
分类:数据库   时间:2020-05-27 01:04:40    阅读次数:141
2019-2020-2 网络对抗技术 20175224 Exp9 Web安全基础
目录 一、实验基础问题回答 二、实验过程 Webgoat准备 XSS攻击 ① Phishing with XSS 跨站脚本钓鱼攻击 ② Stored XSS Attacks 存储型XSS攻击 ③ Reflected XSS Attacks 反射型XSS攻击 CSRF攻击 ① Cross Site R ...
分类:Web程序   时间:2020-05-26 15:11:45    阅读次数:75
MySQL游标简介【8】
使用MySQL游标 首先,必须使用DECLARE语句声明游标: DECLARE cursor_name CURSOR FOR SELECT_statement; 游标声明必须在变量声明之后。如果在变量声明之前声明游标,MySQL将会发出一个错误。游标必须始终与SELECT语句相关联。 接下来,使用O ...
分类:数据库   时间:2020-05-25 19:38:01    阅读次数:79
4618条   上一页 1 ... 10 11 12 13 14 ... 462 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!