adodb:createparameter 的作用是什么?

发布于 2024-09-01 02:21:54 字数 293 浏览 3 评论 0原文

用简单的英语,您能向我解释一下这一行的含义吗:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉殇 2024-09-08 02:21:54
Cmd.Parameters.Append _
    Cmd.CreateParameter("datapath", adChar, adParamInput, 100)

向数据类型字符(可以是 adInteger 或任何其他类型)的命令对象追加一个参数,该参数接受字段数据路径的参数输入,长度为 100 个字符,仅字符数据类型需要长度,并且应与字段(列)匹配尺寸。

Cmd.Parameters("datapath").Value = "abc"

将参数的值设置为“abc”

这是将放入表中的值。

Cmd.Parameters.Append _
    Cmd.CreateParameter("datapath", adChar, adParamInput, 100)

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.

Cmd.Parameters("datapath").Value = "abc"

Set the value of the parameter to "abc"

This is the value that will be put into the table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文