我有json字符串,我需要使用python在selenium脚本中执行,但我认为.lib
使得难以解析
cmd.CommandText = "INSERT INTO Data (FilePath, ImageSize, ImageSide) VALUES (@FilePath, @ImageSize, @ImageSide)"
command.Parameters.Add("@FilePath", SqlDbType.NVarChar) 'Guessing on the type here
command.Parameters("@FilePath").Value = ListViewItem(lines(0))
' Repeat for the other two parameters, using the appropriate SqlDbType values for each
cmd.ExecuteNonQuery()
我使用/"
,但它不起作用。
我是否需要首先隐藏反斜杠?