/// <summary>
 /// Awake will initialize the connection.
 /// RunAsyncInit is just for show.  You can do the normal SQLiteInit to ensure that it is
 /// initialized during the AWake() phase and everything is ready during the Start() phase
 /// </summary>
 void Awake()
 {
     Debug.Log(SQL_DB_LOCATION);
     Instance = this;
     SQLiteInit();
 }
示例#2
0
 /// <summary>
 /// Awake will initialize the connection.  
 /// RunAsyncInit is just for show.  You can do the normal SQLiteInit to ensure that it is
 /// initialized during the AWake() phase and everything is ready during the Start() phase
 /// </summary>
 void Awake()
 {
     Debug.Log(SQL_DB_LOCATION);
     Instance = this;
     SQLiteInit();
 }