我目前在从缓存数据库中提取文本时遇到问题。我的 CSP 页面是按以下方式编写的:
[...]
<csp:search name="MySearch" classname="dbo.Story" where="storyId" predicates=">" select="storyId,storyName,author,notes,text" options="predicates,popup,leaveopen,sortbox" caption="This is the Story Search Box">
<center>
<INPUT TYPE="button" NAME="Search" VALUE="Search" ONCLICK="MySearch();">
</center>
[...]
注意:我正在查询的表是dbo.Story
或者只是 Story 表。该表中的列是storyId
, storyName
, author
, notes
, text
, 等...
、storyId
、和字段均正确显示,但列中返回的值storyName
均类似于以下内容:author
notes
text
^dbo.StoryS)dt.common.streams.GlobalCharacterStream ^dbo.StoryS
注意:对数据库的直接引用(“全局引用”)本质上是一个以克拉字符开头的多维数组引用^
。该字符表示这是对存储在数据库中的数据的引用,而不是对临时处理私有数据的引用。每个这样的数据库数组称为“全局”。
我希望能够看到流中的内容,但我得到的东西看起来像是参考。有没有人处理过这种事情?