Some news since yesterday. I may be succeded to fix the supposed bug. What do you think about it :
I used the regular dreamweaver CS6 function to insert the problematic record.
Then, I compared the DW code : MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 202, 1, 255, Request.Form("realisation")) ' adVarWChar MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 203, 1, 1073741823, Request.Form("description")) ' adLongVarWChar with two fiels going in a text access fiel and an other in a memo.
and your code in dwzUpload.asp, ligne 831 and aroud : case FORMAT_FOR_STRING cmd.Parameters.Append cmd.CreateParameter("param" & param_index, 202, 1, 255, MM_IIf(fieldsList(i + 1), fieldsList(i + 1), ""))
So i change your code in : case FORMAT_FOR_STRING cmd.Parameters.Append cmd.CreateParameter("param" & param_index, 203, 1, 1073741823, MM_IIf(fieldsList(i + 1), fieldsList(i + 1), ""))
And it works !
But i'm not sur it's OK for all type of fields, or for any reason you could object. But this is a clue. Can you tell me finally what would be good ?
Thanks.
Laurent
|
|
|