Closed GoogleCodeExporter closed 8 years ago
A patch required to fix this would be in SqliteConnection.cs, replacing the
portion of code starting at around line 177 with this:
// Accept connection strings with both comma and semi-colon delimiters. See bug 153.
string[] conn_pieces = connstring.Split(new char[]{',',';'}, StringSplitOptions.RemoveEmptyEntries);
for ( int i = 0; i < conn_pieces.Length; i++ )
{
string piece = conn_pieces[i].Trim();
int firstEqual = piece.IndexOf( '=' );
Original comment by stewart....@gmail.com
on 19 Jul 2012 at 9:09
This issue was closed by revision 0b18f43d094b.
Original comment by stewart....@gmail.com
on 17 Aug 2012 at 11:13
Fixed in revision 0b18f43d094b
Original comment by stewart....@gmail.com
on 17 Aug 2012 at 11:13
Original issue reported on code.google.com by
da...@ritter.demon.co.uk
on 18 Apr 2012 at 7:59