RE: When I do a select my numeric value have a dot as decimal
Here's my code
commaTextIo = new CommaTextIo(fileName, "w");
while (qr.next())
{
generalJournalEntry = qr.get(tableNum(generalJournalEntry));
generalJournalAccountEntry = qr.get(tableNum(generalJournalAccountEntry));
commaTextIo.write(generalJournalAccountEntry.LedgerAccount, generalJournalEntry.SubledgerVoucher, generalJournalAccountEntry.AccountingCurrencyAmount, generalJournalEntry.AccountingDate, generalJournalAccountEntry.text, generalJournalAccountEntry.TransactionCurrencyAmount, generalJournalAccountEntry.TransactionCurrencyCode);
}
AS you can see I'm not converting numeric to strings...I try with AsciiIo ,textIo event System.io.streamwriter...and I always have the same problem.