You are not logged in.
I get an error at line 279 in unit SynDBExplorerFrame, Too many actual parameters.
Downloaded the latest NightlyBuild.
fpcdeluxe, FPC 3.2 / Lazarus 2.0, mORMot on Windows 10 ...
Offline
Seem there's no more array of TSQLRecordClass 1st parameter in the create constructors, so you can remove the [] from line 278 of SynDBExplorerFrame.pas and it is working again. On the changes reason, guess
ab and other experts involved will share with us . Mormot is moving really fast better than many commercial products
Change TSQLTableJSON.Create([], '',pointer(fJSONBuffer),length(fJSONBuffer)); to
TSQLTableJSON.Create('',pointer(fJSONBuffer),length(fJSONBuffer));
Offline
Hi Delphinium,
I have removed the [] already and its compiling. Just thought that I mention it to Arnaud.
fpcdeluxe, FPC 3.2 / Lazarus 2.0, mORMot on Windows 10 ...
Offline
Good catch!
I've fixed this sample (and other samples).
See http://synopse.info/fossil/info/b21e5036ff
In fact, now we have added batch files for continuous integration: compile all available executables (including samples), then run regression tests - this version is tested with Delphi 7, 2007 and XE4.
See http://synopse.info/fossil/info/78331d941f
Offline