Posts by Erick Sasse • 511 points
7 posts
-
4
votes2
answers1316
viewsA: Auto Build Tool for Delphi
Below CI tools (continuous integration). It’s not exactly what you asked for, but if you’re not a developer working alone, I highly recommend that you use such a tool. They build automatically, can…
-
3
votes2
answers252
viewsA: Xamarin with Web Services - Slowness and Timeout
Everything indicates that you are moving a lot of data in the same request. If you cannot decrease the amount of data, you have to increase the number of requests and distribute the data between…
xamarinanswered Erick Sasse 511 -
12
votes2
answers4768
viewsQ: How to get MD5 from a file in Delphi?
How to get the MD5 of a file in Delphi?
-
9
votes2
answers4768
viewsA: How to get MD5 from a file in Delphi?
The code below uses Indy, which accompanies Delphi. uses IdHashMessageDigest, IdHash; function MD5DoArquivo(const FileName: string): string; var IdMD5: TIdHashMessageDigest5; FS: TFileStream; begin…
-
4
votes2
answers3255
viewsA: How to perform object persistence in Delphi database?
You need a framework ORM for Delphi. You can develop yours or use a third party. Some options are: TMS Aurelius (commercial, only supports newer versions of Delphi by using features like Generics.…
-
4
votes2
answers109
viewsA: Is there a correct place to load native Ruby libraries when using Rails?
The way you’re doing it is correct. How open-uri is part of the standard Ruby library, you only need to require it when using.
-
2
votes3
answers1559
viewsA: How to condition the insertion of a record in SQL Server?
My favorite way to do this is to try to update and if he can’t get there I do the Insert. I think it works on all versions of database, I’ve used from MSSQL 2005 without problems. UPDATE DatasBase…