ODBC connection to an .accdb file
问题 I am trying to access a microsoft Access database file from a unity project i've been working on, but it keeps throwing an exception because it is unable to find the file and there has been no standard river has been selected. The Code: using UnityEngine; using UnityEngine.UI; using System; using System.Data; using System.Data.Odbc; public class AccDBReader : MonoBehaviour { public string FileName; public string Table_Name; public string Column_name; public DataTable Dt; public string text;