Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 8 of 8 total
Thread Custom Full Text Search
Tue, Jul 3 2018 4:21 PMPermanent Link

Charalampos Michael

Hello,
 Is it possible to put custom encrypted content in a CLOB and then use a custom Word Generator or something for full text index the field ?

Thank you
Fri, Jul 6 2018 3:03 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Michael,

<< Is it possible to put custom encrypted content in a CLOB and then use a custom Word Generator or something for full text index the field ? >>

Sure, but you're going to want to also create a text filter module that can be used to decrypt the text before it gets handed off to the word generator:

Tim Young
Elevate Software
www.elevatesoft.com
Tue, Jul 10 2018 2:48 AMPermanent Link

Charalampos Michael

Tim,

<< Sure, but you're going to want to also create a text filter module that can be used to decrypt the text before it gets handed off to the word generator:>>

Great! Is it safe to put "Binary" Data into the CLOB and do the same ?

Thank you
Sat, Jul 14 2018 3:35 AMPermanent Link

Charalampos Michael

Up ...
Tue, Jul 17 2018 12:38 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Michael,

<< Great! Is it safe to put "Binary" Data into the CLOB and do the same ? >>

Not really - you're going to run into issues if you start trying to use binary data with the filtering.  The filtering is done across a C-style API into the DLL, so strings are dealt with as if they were NULL-terminated C-style strings.

Tim Young
Elevate Software
www.elevatesoft.com
Tue, Jul 17 2018 12:39 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Michael,

If the data is encoded as hex, etc., then yes, it will work then.  But not raw binary data.

Tim Young
Elevate Software
www.elevatesoft.com
Wed, Jul 18 2018 4:01 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

I used to use UUEncode for things like that - fairly fast and a standard.

Roy Lambert
Thu, Jul 19 2018 3:57 AMPermanent Link

Charalampos Michael

Thank you guys for thei ideas! Smile
Image