Advertisement
Guest User

Untitled

a guest
Sep 17th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Data;
  4. using FirebirdSql.Data.FirebirdClient;
  5.  
  6. public class SQLConnection : MonoBehaviour {
  7.  
  8. public void Start () {
  9. string conn = @"Database=C:databaseinventory.FDB;" + "User=SYSDBA;" + "Password=masterkey;" + "Dialect=3;" + "Server=localhost";
  10. FbConnection dbcon = new FbConnection(conn);
  11. }
  12.  
  13. }
  14.  
  15. TypeLoadException: Could not load type 'FirebirdSql.Data.FirebirdClient.FbConnectionString' from assembly 'FirebirdSql.Data.FirebirdClient, Version=4.1.0.0, Culture=neutral, PublicKeyToken=3750abcc3150b00c'. (wrapper remoting-invoke-with-check) FirebirdSql.Data.FirebirdClient.FbConnection:.ctor (string) SQLConnection.Start () (at Assets/SQLConnection.cs:12)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement