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?