Exemplo n.º 1
0
 public static void InsertCopyRecord(String Storeid, String Des_FileName, String SourceFileName, String ID_Day)
 {
     SqlFunctions_CatmanDataCollection.ExecuteNonReturnSQL("Insert into ManualCopy(Storeid,Destination_FileName,Source_FileName,ID_Day) values(" + Storeid + ",'" + Des_FileName + "','" + SourceFileName + "'," + ID_Day + ")");
 }
        public static DataTable GetEntireRow(String StoreID, String DesFileName, String SourceFileName, String ID_Day)
        {
            DataTable DT = SqlFunctions_CatmanDataCollection.GetData("Select * from ManualCopy where Storeid=" + StoreID + " and Destination_FileName='" + DesFileName + "' and Source_FileName='" + SourceFileName + "' and ID_Day=" + ID_Day);

            return(DT);
        }