Ask a Question related to Coldfusion Database Access, Design and Development.
-
Tulsa #1
Querying Blobs
I am trying to search a column of blobs for a matching string. It seems as
though this is impossible and blobs cannot be used in wildcard searches and
casting does nothing. I was just wondering if anyone knew how to do this
before I gave up. Unfornately my db type is informix, but I would appreciate
all db type specific suggestions. Thanks for help.
<cfquery name="test" datasource="e4500">
select dm_notes
FROM dm_notes
WHERE dm_notes MATCHES '*Pulled By*'
</cfquery>
Tulsa Guest
-
BLOBS with PostGres
CF7 and PostgreSQL 8 on separate boxes. I need to allow a user to upload a binary object and have CF insert it into a table on the DB server as a... -
BLOBs to CLOBS???
I was curious to see if anyone has had experienced convering a BLOB into CLOB in Oracle 8i using PL/SQL??? -
BLOBs in Oracle
I need to store and retrieve BLOBs in Oracle 10 through CFMX. Can someone provide sample code for how I can do that? (i.e., CFQUERY and related... -
OLE DB and BLOBs
I have a Windows OLE DB COM application written in Microsoft C++ that processes MSSQL tables containing BLOB columns. I need to port this code for... -
Smart BLOBs
I have a feeling I already know (and hate) the answer to this question: In an sbspace, is it ever possible to have more than one BLOB on the same... -
Dan Bracuk #2
Re: Querying Blobs
I don't know anything about blobs, but, what would happen if you changed your
where clause to:
where lcase(dm_notes) like '%pulled by%'
The name of the lower case function might be somethint other than lcase.
Dan Bracuk Guest
-
Kronin555 #3
Re: Querying Blobs
Tulsa,
I don't know Informix, so your best bet would be to ask on an informix forum.
Is there any way in Informix to make a full text index on the blob data?
Sorry I can't help more, but I stay away from clobs and blobs as much as
possible because of the simple things that they make very difficult.
Kronin555 Guest



Reply With Quote

