From:
<car...@te...> - 2003-10-20 15:53:59
|
Hello: Ok, fixed in CVS. > static private readonly string ConnectionString = > @"Server=80.80.104.12;Database=c:\temp\carlos.gdb;Connection > Lifetime=15;Dialect=3;User=carlos;Password=carlos;"; One question, with this connection string the .net provider will use UNICODE_FSS as character set only if this is the Default character set of .net framework ( for example for me the default is ISO8859_1 ), if you want the .net provider working with UNICODE_FSS ( UTF-8 ), that it's database character set ;) ,you need to add this to the connection string: Charset=UNICODE_FSS ( With this probably the beta 2 release will work ok ;) but in any case can be better for you to get a new copy of CVS sources ) -- Best regards Carlos Guzmán Álvarez Vigo-Spain |