From: Todd P. <pal...@ya...> - 2004-04-26 17:07:44
|
There is a bug in the FbConnectionString in the parsing of connection strings. The code in the ConnectionStringToFields() method will loose the last parameter in a connection string because there is no ending semicolon. Proposed change: Replace all the lines in the FbConnectionString() function with the following: string[] fields = connectionString.Split(";".ToCharArray()); foreach (string field in fields) ParseConnectionField(field); I'd also like to suggest changing the code in the ParseConnectionField() function to be a case-insentitive match. I'd be happy to provide a cvs diff. Todd --------------------------------- Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25¢ |