Ejemplo n.º 1
0
    // Use this for initialization
    void Start()
    {
        asyncDB = new SQLiteAsync();

        // open database
        asyncDB.Open(ExtensionMethods.AppWritableDirectory() + "/demo_for_async_db.db", null, null);

        // create test table.
        asyncDB.Query(queryCreate, CreateQueryCreated, null);
    }
Ejemplo n.º 2
0
    // Use this for initialization
    void Start()
    {
        asyncDB = new SQLiteAsync();

        // open database
        asyncDB.Open(Application.persistentDataPath + "/demo_for_async_db.db", null, null);

        // create test table.
        asyncDB.Query(queryCreate, CreateQueryCreated, null);
    }
Ejemplo n.º 3
0
	// Use this for initialization
	void Start () {
		
		asyncDB = new SQLiteAsync();
		
		// open database
		asyncDB.Open(Application.persistentDataPath + "/demo_for_async_db.db");
		
		// create test table.
		asyncDB.Query(queryCreate, CreateQueryCreated, null);
	}