Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. string con;
  2.  
  3. string fileName = "MiniProfilerData.sdf";
  4. string password = "arcanecode";
  5.  
  6. if (File.Exists(fileName))
  7. {
  8. File.Delete(fileName);
  9. }
  10.  
  11. con = string.Format("DataSource="{0}"; Password='{1}'", fileName, password);
  12. SqlCeEngine en = new SqlCeEngine(con);
  13. en.CreateDatabase();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement