adodb:createparameter 的作用是什么?
用简单的英语,您能向我解释一下这一行的含义吗:
Cmd.Parameters.Append _
Cmd.CreateParameter("datapath", adChar, adParamInput, 100)
然后我有一行将数据写入数据路径列:
Cmd.Parameters("datapath").Value = "abc"
但我不明白第一行的用途? adChar 和 adParamInput 是什么?100 代表什么?
in plain english can you please explain to me what does this line mean:
Cmd.Parameters.Append _
Cmd.CreateParameter("datapath", adChar, adParamInput, 100)
i then have a line that writes data to the datapath column:
Cmd.Parameters("datapath").Value = "abc"
but i do not understand the purpose of the first line? what is adChar and adParamInput and what does 100 stand for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向数据类型字符(可以是 adInteger 或任何其他类型)的命令对象追加一个参数,该参数接受字段数据路径的参数输入,长度为 100 个字符,仅字符数据类型需要长度,并且应与字段(列)匹配尺寸。
将参数的值设置为“abc”
这是将放入表中的值。
Append a parameter to the command object of data type character (could be adInteger or any other type) that accepts parameter input for field datapath and is 100 characters long, the length is only required for character data types and should match the field (column) size.
Set the value of the parameter to "abc"
This is the value that will be put into the table.