Search results for query: *

  1. E

    Linq syntax with group by and having clauses

    But it's the way I want it to work. I cannot put all the fields of the Select block into the GroupBy block, it would be another request which won't suit my need.
  2. E

    Linq syntax with group by and having clauses

    Thanks for your reply. My problem is that with the linq syntax I get only 2 fields in the list : SUM_AMOUNT and NUM_STAUS_TAB.
  3. 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...
  4. E

    Cannot get sum from Dataview list

    jmcilhinney Thanks for your reply. Sorry for the delay. Your syntax is the right one, I found it too in the net.
  5. 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...
  6. 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)...
  7. E

    Problem with Ftp commands inside Web application

    Thank you for your reply jmcilhinney. I tried what you said but it still doesn't work. As I have a firewall error, do you have an idea about what application I should exclude (by creating a rule in the firewall) ? I tried to exclude 'ftp.exe', 'w3wp.exe' but it's the same. Eric.
  8. 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