Posts by Diego Garcia • 396 points
8 posts
-
3
votes2
answers8869
viewsA: Error "could not load ssl library" using Delphi 7 and Indy 10.0.52
Download directly from the recommended links in this Indy project page. The most current ones are available here http://indy.fulgan.com/SSL/ Here we use the 0.9.8.14 recommended by @Victorzanella.…
-
2
votes2
answers92
viewsA: When using the Laravel view helper, what kind of data is being returned?
The initial description is perfect it returns a View instance so Return is a View. Note that the view is nothing more than an object responsible for rendering htmls. Note also that directly on…
-
2
votes1
answer1256
viewsA: Is it possible to make a connection to Postgresql via ODBC in Delphi 7?
A. Santos to use ODBC connection it is necessary to use the ADO components, with it it is possible to perform the connection through the lib odbc of Postgresql. To get started download the lib odbc…
-
4
votes3
answers297
viewsA: Git alias for the current branch name
Ricardo you can use aliases as follows: [alias] #Takes your branch branch-name = "! git rev-parse --abbrev-ref HEAD" #Publishes its branch Publish = "! git push -u origin $(git branch-name)" #Delete…
gitanswered Diego Garcia 396 -
0
votes2
answers4728
viewsA: How to do WHILE in PL/SQL
Friend by the bug report you put you are using Oracle and its syntax is a little different to write a while. Try it this way: DECLARE CONT INTEGER := 0; BEGIN WHILE CONT < 3 LOOP SET CONT := CONT…
oracleanswered Diego Garcia 396 -
2
votes1
answer467
viewsA: Connect with Postgresql
Friend by the image you posted your application was created using Delphi 7 and it did not natively support Postgresql connection, however there are dbexpress drivers that add support to Postgresql…
-
0
votes1
answer1753
viewsA: Generate digital signature file with Delphi 7
Matheus you can use that lib Crypt2 and on that website has an example of how to generate the p7s file. If you do not want to use this lib it is possible to do the same using the Openssl dll itself…
-
4
votes1
answer130
viewsA: What kind of system modeling is that?
Friend this type of application is called 3 layer application. Being them: 1st Data Tier (Database Layer) (SQL, Sqllite, etc) 2nd Business Logic Tier (Business rule layer), called the application…