Ejemplo n.º 1
0
 public SQLiteAsync GetSQLiteAsync(string name)
 {
     if (!dbs.ContainsKey(name))
     {
         dbs[name] = new SQLiteAsync();
     }
     return(dbs[name]);
 }
	public SQLiteAsync GetSQLiteAsync(string name)
	{
		if( !dbs.ContainsKey(name) )
		{
			dbs[name] = new SQLiteAsync();
		}
		return dbs[name];
	}
Ejemplo n.º 3
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.º 4
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);
	}
Ejemplo n.º 5
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.º 6
0
 public DBMonster(SQLiteAsync _Async) : base(_Async)
 {
 }
Ejemplo n.º 7
0
 public DBDataBase(SQLiteAsync _sqlAsync)
 {
     m_sqlAsync = _sqlAsync;
 }
Ejemplo n.º 8
0
 public DBItemMaster(SQLiteAsync _Async) : base(_Async)
 {
 }
Ejemplo n.º 9
0
 public DBWork(SQLiteAsync _Async) : base(_Async)
 {
 }
Ejemplo n.º 10
0
 public DBItem(SQLiteAsync _Async) : base(_Async)
 {
 }
Ejemplo n.º 11
0
    //public List<TUser> user_data_list = new List<TUser>();

    //DBDataBaseのAsyncに直接代入
    public DBPurchase(SQLiteAsync _Async) : base(_Async)
    {
    }
Ejemplo n.º 12
0
 public DBKvs(SQLiteAsync _Async) : base(_Async)
 {
 }
Ejemplo n.º 13
0
 public DBStaff(SQLiteAsync _Async) : base(_Async)
 {
 }