Error message is:
Query Of Queries runtime error.
Unsupported SQL type "java.sql.Types.CLOB".

My database table:

RESMIGAZETEFIHRISTI:

TARIH NOT NULL DATE
METIN NOT NULL NCLOB


My ColdFusion code is:

<!-- fun -->
<cfquery datasource="yonetim_tr" name="qryResmiGazeteler">
select
METIN
from
RESMIGAZETEFIHRISTI
where
TRUNC(TARIH) >= TRUNC(<cfqueryparam
value="#LSParseDateTime(varibles.tarih)#" cfsqltype="cf_sql_timestamp"/>)
</cfquery>
<!-- error occur on this --->
<cfquery name="qryResmiGazetelerAlt" dbtype="query">
SELECT
METIN
FROM
qryResmiGazeteler
</cfquery>

System Information:
ColdFusion 7.0 MX
Oracle 9i (database character set is Unicode)

How can I resolve this problem?

<cfquery datasource="yonetim_tr" name="qryResmiGazeteler">
select
METIN
from
RESMIGAZETEFIHRISTI
where
TRUNC(TARIH) >= TRUNC(<cfqueryparam
value="#LSParseDateTime(varibles.tarih)#" cfsqltype="cf_sql_date"/>)
</cfquery>
<cfquery name="qryResmiGazetelerAlt" dbtype="query">
SELECT
METIN
FROM
qryResmiGazeteler
</cfquery>