コード例 #1
0
ファイル: DbUtil.cs プロジェクト: madiantech/tkcore
 internal static int FillDataSet(ISimpleAdapter adapter, DataSet dataSet, string tableName,
                                 int startRecord, int maxRecords)
 {
     TkTrace.LogInfo(adapter.SelectSql);
     return(adapter.Fill(dataSet, startRecord, maxRecords, tableName));
 }
コード例 #2
0
ファイル: DbUtil.cs プロジェクト: madiantech/tkcore
        //private readonly static Type BlobType = typeof(byte[]);

        internal static int FillDataSet(ISimpleAdapter adapter, DataSet dataSet, string tableName)
        {
            TkTrace.LogInfo(adapter.SelectSql);
            return(adapter.Fill(dataSet, tableName));
        }