我目前在从Cache数据库中提取文本时遇到问题。我的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
注意:对数据库的直接引用(“全局引用”)本质上是一个多维数组引用,前面是克拉字符^
。该字符表示这是对存储在数据库中的数据的引用,而不是临时处理私有数据。每个这样的数据库阵列称为“全局”。
我希望能够看到流中的内容,但我得到的东西看起来像是一个参考。有没有人以前处理过这种事情?