在SQL SERVER中,可以这样操作:
           myCommand = New OleDb.OleDbCommand("insert into Category(categoryName,categoryID,Icon,parentCategoryID,content,Content_noHtml,categorylevel,CategoryClass,hyperlink,categoryEnabled,Visittimes,LastUpdated,[language],categoryOrder,ProductID,ProductPrice,Productor,Saler,ProductImage) values(@categoryName,@categoryID,@Icon,@parentCategoryID,@content,@Content_noHtml,@categorylevel,@CategoryClass,@hyperlink,@categoryEnabled,@Visittimes,@LastUpdated,@language,@categoryOrder,@ProductID,@ProductPrice,@Productor,@Saler,@ProductImage)", myConnection)            myCommand.Parameters.Add(New OleDb.OleDbParameter("@categoryID", OleDb.OleDbType.Char, 16))
            myCommand.Parameters("@categoryID").Value = Trim(txtboxCategoryID.Text)在ACCESS中也可以这样吗?遇到备注型字段应该怎么处理,是不是OleDb.OleDbType.Char, 65536?