예제 #1
0
파일: SQLiteDao.cs 프로젝트: radtek/HinxCor
 public hResult <T> Update <T>(hTable <T> table, hRow <T> row)
 {
     throw new NotImplementedException();
 }
예제 #2
0
파일: SQLiteDao.cs 프로젝트: radtek/HinxCor
 public int Drop <T>(hTable <T> table)
 {
     throw new NotImplementedException();
 }
예제 #3
0
파일: SQLiteDao.cs 프로젝트: radtek/HinxCor
 public void Insert <T>(hTable <T> table, hRow <T> row)
 {
     throw new NotImplementedException();
 }
예제 #4
0
파일: SQLiteDao.cs 프로젝트: radtek/HinxCor
 public int Delete <T>(hTable <T> table, hFilter <T> row)
 {
     throw new NotImplementedException();
 }