Also affected: Javanese script. Run four queries.
SELECT 'ꦫ' AS SIGN INTO JAVANESE ;
INSERT INTO JAVANESE ( SIGN ) SELECT 'ꦗ' AS SIGN;
INSERT INTO JAVANESE ( SIGN ) SELECT 'ꦣ' AS SIGN;
SELECT SIGN FROM JAVANESE WHERE SIGN = 'ꦫ'
The last query returns three records instead of one, because for microsoft access all javanese signs are the same. (SELECT 'ꦫ' = 'ꦣ' as COMPARISON_RESULT;
returns true )
You can also compare Javanese signs with emoji:
(SELECT 'ꦧ' = '😦' as COMPARISON_RESULT;
returns true ).
Note that VBA is not affected, only the database engine
Also affected: Javanese script. Run four queries.
SELECT 'ꦫ' AS SIGN INTO JAVANESE ;
INSERT INTO JAVANESE ( SIGN ) SELECT 'ꦗ' AS SIGN;
INSERT INTO JAVANESE ( SIGN ) SELECT 'ꦣ' AS SIGN;
SELECT SIGN FROM JAVANESE WHERE SIGN = 'ꦫ'
The last query returns three records instead of one, because for microsoft access all javanese signs are the same. (SELECT 'ꦫ' = 'ꦣ' as COMPARISON_RESULT;
returns true )
You can also compare Javanese signs with emoji:
(SELECT 'ꦧ' = '😦' as COMPARISON_RESULT;
returns true ).
Note that VBA is not affected, only the database engine