create proc proc_add_image
@picUrl  varchar
as
declare @wareId int
select top 1 @wareId = id from ware order by id desc
insert into image values(@wareId,@picUrl)GO这是存储过程,传进去的参数值用断点查到了,是~/images/warepic/134646465.gif
但写入数据库后就只剩下 ~ 这个符号了,请问是怎么回事?