cancel
Showing results for 
Search instead for 
Did you mean: 

Data Access Extension (Bug) - Character Support

Former Member
0 Kudos

Hi,

Encountered an issue while working on the Lumira desktop 1.20 and Data access extension. Lumira does not recognize the certain symbols on the console. After changing the code page 437 (Default MS-DOS) to code page 858, I could print the € and £.  But Lumira did not recognize them. This is just the example I took there could be many more such characters. ( i just took an example for currency symbols, there could be anything)

I am attaching all supporting documents.

  • Sample C# code.

namespace ConsoleApplication1

{

    class Program

    {

        public static unsafe void Main(string[] args)

        {

                    var encoder = System.Text.Encoding.GetEncoding(858);   

                    byte[] c = new byte[] { 156 };

   

                    Console.WriteLine("beginDSInfo");

                    Console.WriteLine("csv_separator;,;true");

                    Console.WriteLine("csv_date_format;yyyy-m-d;true");

                    Console.WriteLine("csv_number_grouping;,;true");

                    Console.WriteLine("csv_number_decimal;.;true");

                    Console.WriteLine("csv_first_row_has_column_names;true;true");

                    Console.WriteLine("endDSInfo");

                    Console.WriteLine("beginData");

                    Console.WriteLine("Name," + encoder.GetString(c) + " Amount , Date");

                    Console.WriteLine("Mayank Mishra, 24.5, 2024-10-31");

                    Console.WriteLine("Amit Gupta, 30, 2010-12-25");

                    Console.WriteLine("Mayank Mishra, 24.5, 2024-10-31");

                    Console.WriteLine("Amit Gupta, 30, 2010-12-25");

                    Console.WriteLine("endData");

                   

                }

            }

        }

  • Console Screen shot

  • Lumira Screen shot

Did anyone else face the same problem? What was the solution you adapted to? Looking forward to hear from product team.

Best Regards,

Mayank Mishra

Accepted Solutions (1)

Accepted Solutions (1)

Henry_Banks
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi,

Apologies for lateness here.  Just to confirm, your issue is currently under investigation, and a supporting note can be found here: 2114336 - Lumira Desktop Data Access Extensions do not display
currency symbols

Thanks to for closing the loop after handling your OSS Incident 1193550

Regards,

H

Former Member
0 Kudos

Thanks for your response Henry.

I was told by support team that this is escalated to technical people to look into. It was 5th Jan when note was created since then I have not heard anything or resolution.
Hope to have the issue resolved soon

- Mayank.

Henry_Banks
Product and Topic Expert
Product and Topic Expert
0 Kudos

please go via OSS to enquire about the planned fix-timelines.

Answers (1)

Answers (1)

Former Member
0 Kudos

Suggestion to all using DAE in production environment:


Be sure if your data or column heading can be represented in Page code 437. DAE is based on console and console has its own challenges in implementation


You can check this entry in idea place.


Data Access Extension - Limited Character Support for Console output consumption : View Idea