Posts by Aparecido Silva • 113 points
13 posts
-
1
votes3
answers887
viewsQ: Create DELPHI Component at Runtime
texto := 'object DWResponseTranslator1: TDWResponseTranslator ' + 'ElementAutoReadRootIndex = True'+ 'ElementRootBaseIndex = -1'+ 'RequestOpen = rtGet'+ 'RequestInsert = rtPost'+ 'RequestEdit =…
delphiasked Aparecido Silva 113 -
0
votes1
answer851
viewsQ: Firebird remote database access error 3.0.3
Trying to connect the database on Centos7 server with Ibexpert I have the message: Unsuccessful Execution caused by a system error that precludes Successful Execution of subsequent statements.…
firebirdasked Aparecido Silva 113 -
0
votes1
answer398
viewsA: Access Firebird Centos7 Database
Man Hundreds was not going out to the internet and therefore did not install the library ICU, then executed command: dhclient eth1 and then: yum install icu…
-
0
votes1
answer398
viewsQ: Access Firebird Centos7 Database
I normally installed Firebird 3.0.3 in Centos7 - Firebird-3.0.3.32900-0.amd64 [root@localhost firebird]# ps aux |grep firebird firebird 1099 0.0 0.0 29644 1004 ? S 17:22 0:02…
-
0
votes1
answer243
viewsQ: Destroy Tlist Memory
I created this object list with mormot and it won’t let you destroy the Tlist Created after use: type TTesteVO = class private fcodigo : Integer; fnome : String; frespostas : String; ftotal : Real;…
-
0
votes1
answer49
viewsA: Serialization Mormot Object with Arraydinamico
TInstructions = array of String; type TCustomersVO = class private fcustomer : integer; fmessages : String; fexpire : TDateTime; finstructions :…
-
1
votes1
answer275
viewsQ: Digital Certificate to receive HTTPS requests via AJAX
Does anyone know what kind of digital certificate is needed to use on mormot to receive requests AJAX via HTTPS? Also, how to install it in windows? If you have an example (preferably using Delphi…
-
0
votes1
answer49
viewsQ: Serialization Mormot Object with Arraydinamico
type TRecordInstructions = record TextInstructions : RawUTF8; end; TArrayInstructions = array of TRecordInstructions; type TDoctoVO = class private p_customer : Integer; p_messages : RawUTF8;…
-
5
votes1
answer739
viewsQ: Deserialization of Object JSON morMot
I am trying to deserialize a JSON Object with an objectlist, following the example of the forum mormot does not work, someone can help me: Memo.Text :=…
-
0
votes1
answer801
viewsQ: capture JSON object sent via POST in Mormot’s request payload
I’m sent my object JSON via POST using the ExtJS 6.01. my application server was done in morMot in the Delphi Seattle. Sending in mode GET I usually take the parameters that come by url. But sending…
-
0
votes1
answer505
viewsA: Firebird execute statement within an exists
I decided as follows: function TConexoesController.Ultimo_Codigo(Tabela,Status:String):Integer; var Query : TFDQuery; begin Query := TFDQuery.Create(nil); Query.Connection := pegaConexao; try try…
firebirdanswered Aparecido Silva 113 -
0
votes1
answer505
viewsQ: Firebird execute statement within an exists
I would like to know how to pass the table name as parameter create or alter procedure TESTE ( TABLENAME varchar(30), STATUS varchar(1)) returns ( INCREMENT integer) as declare variable RESULT…
firebirdasked Aparecido Silva 113 -
4
votes1
answer2202
viewsQ: Datasnap error with Indy
I made a server application that calling the methods by Browse, everything works perfect, but to test my methods I built a client using TdHTTP and I call the methods as follows: procedure…
delphiasked Aparecido Silva 113