update 20241210
This commit is contained in:
@@ -59,7 +59,7 @@ namespace OnDoc.UIControls.Administrator
|
||||
}
|
||||
else
|
||||
{
|
||||
sql = "select top "+numericUpDown1.ToString()+" rowid, tgnummer, insert_timestamp, dbo.binarytobase64(xmldata) from edk_data ";
|
||||
sql = "select top "+numericUpDown1.Value.ToString()+" rowid, tgnummer, insert_timestamp, dbo.binarytobase64(xmldata) from edk_data ";
|
||||
sql = sql + " where insert_timestamp >= '" + datum + "' ";
|
||||
|
||||
if (mitarbeiternr > 0)
|
||||
@@ -69,7 +69,7 @@ namespace OnDoc.UIControls.Administrator
|
||||
sql = sql + " where tgnummer='" + db.dsdaten.Tables[0].Rows[0][0].ToString() + "'";
|
||||
}
|
||||
}
|
||||
sql = sql + "order by rowid desc";
|
||||
sql = sql + " order by rowid desc";
|
||||
|
||||
}
|
||||
db.Get_Tabledata(sql, false, true);
|
||||
|
||||
Reference in New Issue
Block a user