IvorySQL icon indicating copy to clipboard operation
IvorySQL copied to clipboard

I hope ivorysql is compatible with Oracle asciistr() function

Open sun-hchao opened this issue 3 years ago • 0 comments

In Oracle, the asciistr() function can convert strings from any character set to ASCII strings using the database character set.

The following are some examples of using Oracle assiistr() functions: ASCIISTR('A B C Ä Ê') Result: 'A B C 0C4 0CA'

ASCIISTR('A B C Õ Ø') Result: 'A B C 0D5 0D8'

ASCIISTR('A B C Ä Ê Í Õ Ø') Result: 'A B C 0C4 0CA 0CD 0D5 0D8'

sun-hchao avatar Apr 06 '22 05:04 sun-hchao