string
Data Source=94.251.1.1,1433;Initial Catalog="BCC";User ID=admin;Password=admin
SQLiteConnection con; public SQLiteConnection GetConnectionWithCreateDatabase() { string fileName = "sampleDatabase.db3"; string documentPath = System.Environment.GetFolderPath (System.Environment.SpecialFolder.Personal); string path = Path.Combine(documentPath, fileName); con = new SQLiteConnection(path); con.CreateTable<Employee>(); return con; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)