惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
Intezer
V
Vulnerabilities – Threatpost
Google Online Security Blog
Google Online Security Blog
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
AWS News Blog
AWS News Blog
G
GRAHAM CLULEY
P
Privacy & Cybersecurity Law Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
N
News | PayPal Newsroom
T
Tenable Blog
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
S
Secure Thoughts
P
Privacy International News Feed
IT之家
IT之家
Project Zero
Project Zero
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
大猫的无限游戏
大猫的无限游戏
博客园_首页
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
NISL@THU
NISL@THU
I
InfoQ
D
DataBreaches.Net
有赞技术团队
有赞技术团队
K
Kaspersky official blog
Security Latest
Security Latest
The Register - Security
The Register - Security
Hugging Face - Blog
Hugging Face - Blog
S
Security @ Cisco Blogs
P
Proofpoint News Feed
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
AI
AI
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
N
News and Events Feed by Topic

博客园 - hua

很久没有来了! 这里的书读好慢呀 无论干什么事都要对自己有信心! 好久没有来这里了 有过了一天,觉得没有学到什么东西。 领工资的感受 近来这几天状态不太好 我今天什么也没有学到。在工作的时间。 每天都要做些什么 那位高人有关于数据采集的程序 有时候觉得生活么有什么意识。我也不知之道。 下一代互联网 什么才是高手 代码编写中的心理学与美学 读了觉得美就摘抄下来了 今天学习关于xml中用一个元素表示一个ds 昨天关于将dataset付值的问题我解决了。 今天在修改网页 我用的事虚拟目录
关于access中存储过程的用法
hua · 2006-11-04 · via 博客园 - hua

<!--#include file="adovbs.inc"-->
<!--#include file="conn.asp"-->
<%
Set TypeLib = CreateObject("Scriptlet.TypeLib")
strGUID = TypeLib.Guid
response.Write(strguid)

set typelib=nothing
set guid=server.CreateObject("scriptlet.typelib")
response.Write(guid.guid)
dim  tel,cname,marden,ty,add
tel=239939
cname="wo"
marden="e 'or 1=1--"
ty="leoeo"
add ="2006-6-6"
set rs=server.CreateObject("adodb.recordset")
'set rs1=server.CreateObject("adodb.recordset")
'conn.execute("insert into customer(tel,cname,marden,addr,ty ) values('"&tel&"','"&cname&"','"&marden&"','"&ty&"','"&add&"')")

set com=server.CreateObject("adodb.command")
'com.commandtext="addnewdata"
com.commandtext="addnewdata"
com.commandtype=&h0004
com.activeconnection=conn
com.execute, array(tel,cname,marden,ty,add)
with com
.Parameters.Append  .CreateParameter  ("@tel",adinteger,adparaminput,6)
.parameters("@tel")=tel

.parameters.append( .createparameter("@cname",adchar,adparaminput,20))
.parameters("@cname")=cname

.parameters.append( .createparameter("@marden",advarwchar,adparaminput,20))
.parameters("@marden")=marden

.parameters.append( .createparameter("@ty",advarwchar,adparaminput,20))
.parameters("@ty")=ty

.parameters.append( .createparameter("@add",addbtime,adparaminput,20,add))
.parameters("@add")=now()
end with
set rs=com.execute
response.Write("ok")
%>