Is DBF table ANSI?
-
Hi, when I open a dbf table with dBALite I can see under Database Info whether a table is ANSI or not... Is there a way to get the same information when I open that table in a C# program?
Life is not short... the problem is only how you organize yourself
-
Hi, when I open a dbf table with dBALite I can see under Database Info whether a table is ANSI or not... Is there a way to get the same information when I open that table in a C# program?
Life is not short... the problem is only how you organize yourself
Probably, but that would be something database specific... Normally you don't need to care about the encoding. The database driver should give you string data as strings, not as encoded byte arrays.
Despite everything, the person most likely to be fooling you next is yourself.
-
Probably, but that would be something database specific... Normally you don't need to care about the encoding. The database driver should give you string data as strings, not as encoded byte arrays.
Despite everything, the person most likely to be fooling you next is yourself.
Normally not... but the problem is that all language specific char may not be read correctly. For exemple instead of ü i get | ... to solve that problem I have to decode the table (this is already done) The problem is that some times I get tables that are already encoded correctly... in that case I don't need to decode the table...
Life is not short... the problem is only how you organize yourself