Guest User

Untitled

a guest
Mar 30th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. string connectionString = "User = SYSDBA; Password = masterkey; Database = C:\Test.fdb; Charset = NONE"
  2.  
  3. FbConnection fbCon = new FbConnection(connectionString);
  4. try
  5. {
  6. fbCon.Open();
  7. }
  8. catch(Exception exp)
  9. {
  10. MessageBox.Show(exp.ToString());
  11. }
Add Comment
Please, Sign In to add comment