Search results for query: *

  • Users: eric.bryan
  • Content: Threads
  • Order by date
  1. E

    Linq syntax with group by and having clauses

    Hello everybody, I try to get a list from a datatable by a linq syntax with having clause. But I don't get what I want. Here's the SQL syntax : SELECT ID_BEN, GAR1, FIRST(FIRST_NAME) FIRST_NAME, FIRST(LAST_NAME) LAST_NAME, FIRST(ADR1) ADR1...
  2. E

    Cannot get sum from Dataview list

    Hello everybody, I try to get a list from a dataview containing a sum and grouped by some fields. DataView view = _objManager.ACCOUNTS.DefaultView; // Set RowStateFilter to display the current rows...
  3. E

    Random exception on Web service call

    Hello everybody, I have a Web service which works fine in production environment. But sometimes (randomly) an exception is raised : Here is my code : //Here is the line which raises the exception : fctSendRequestSynchrone<string>(string.Format("logs/{0}/message", _lIdLog)...
  4. E

    Problem with Ftp commands inside Web application

    Hello everybody, I have developped a web application which should upload files to a Ftp server. But I didn't succeed these uploads. I use a Ftp command file : Ftp_Upload.bat : ftp -n -i -s:"C:\Essai_Ftp\ftp_cmd.txt">"C:\Essai_Ftp\ftp.log" Ftp file ftp_cmd.txt : OPEN 100.100.100.100 user...
Back
Top Bottom