System.Data.SQLite

Login
This project makes use of Eagle, provided by Mistachkin Systems.
Eagle: Secure Software Automation
Ticket Hash: 42bb570c2864297bfa9d569466c33ee7cc9269ee
Title: not working connection to the network path.
Status: Closed Type: Incident
Severity: Important Priority: Medium
Subsystem: Connection Resolution: Works_As_Designed
Last Modified: 2013-08-29 07:59:26
Version Found In: 1.0.88.0
User Comments:
anonymous added on 2013-08-29 07:32:35: (text/x-fossil-plain)
not working connection to the network path.

// network path 
var strPathFile = "\\dev02\Shared\MY_BASE.sqlite";

// DATABASE: Create the connection string and set the settings.
String strConnection = @"Data Source=" + strPathFile + @";Version=3;";

// DATABASE: Connect to the database.
var dbConnection = new SQLiteConnection(strConnection);
dbConnection.Open();
-- error --


if use alias:
$> net use x: \\dev02\Shared

var strPathFile = "x:\MY_BASE.sqlite";
.....

connection open fine.
in version 1.0.82.0 work both ways.

mistachkin added on 2013-08-29 07:59:26: (text/x-fossil-plain)
See duplicate ticket [bbdda6eae2].

In order to open a database file on a network share, four leading backslash
characters are now required.