#1 mORMot 1 » FillPrepare() not working as expected with TSQLRestServerFullMemory » 2015-09-01 08:02:04

xotox
Replies: 1

Hi Arnaud!

Following code works as expected if I am using a TSQLRestServerDB instance.

type
  TSQLPerson=class(TSQLRecord)
  private
    fWeight: integer;
    fFirstname: RawUTF8;
    fLastname: RawUTF8;
  published
    property Firstname: RawUTF8 read fFirstname write fFirstname;
    property Lastname: RawUTF8 read fLastname write fLastname;
    property Weight: integer read fWeight write fWeight;
  end;

procedure TTestDomSession.TestBasis;
const
  MAX=100;
var
  rest: TSQLRestServer;
  model:TSQLModel;
  person: TSQLPerson;
  db: string;

  procedure TestInsert;
  var
    i: integer;
  begin
    for i:=1 to MAX do
    begin
      person.Firstname := FormatUTF8('Firstname-%', [i]);
      person.Lastname := FormatUTF8('Lastname-%', [i]);
      person.Weight := i;
      Check(rest.Add(person,true)<>0);
    end;
  end;

  function TestCountAll: integer;
  begin
    result := 0;
    person.FillPrepare(rest, '', []);
    while person.FillOne do
      result:=result+1;
  end;

  function TestSelectCount(aFormat:RawUTF8; const aParams: array of const): integer;
  begin
    result := 0;
    person.ClearProperties;
    person.FillPrepare(rest, aFormat, [], aParams);
    while person.FillOne do begin
      result := result+1;
    end;
  end;
begin
  db := ChangeFileExt(ParamStr(0), '.db3');
  if FileExists(db) then
    Check(SysUtils.DeleteFile(db));
  model := TSQLModel.Create([TSQLPerson]);
  rest := TSQLRestServerDB.Create(model, db, true);
  //rest := TSQLRestServerFullMemory.Create(model, true);
  rest.CreateMissingTables();
  person := TSQLPerson.Create;
  try
    TestInsert;
    Check(TestCountAll=MAX);
    Check(TestSelectCount('', [])=MAX);
    Check(TestSelectCount('Firstname=?', ['Firstname-1'])=1);
    Check(TestSelectCount('Lastname=?', ['Lastname-2'])=1);
    Check(TestSelectCount('Lastname=?', ['Lastname-3'])=1);
    Check(TestSelectCount('Lastname=?', ['Lastname-3'])=1);
    Check(TestSelectCount('Weight=?', [1])=1);
    Check(TestSelectCount('Weight>=?', [1])>=1);
    Check(TestSelectCount('Weight>=?', [MAX+1])=0);
    Check(TestSelectCount('Weight>?', [50])=50);
    Check(TestSelectCount('Lastname LIKE ?', ['Lastname-3'])=1);
    Check(TestSelectCount('Lastname LIKE ?', ['Lastname-3%'])>0);
  finally
    person.Free;
    rest.Free;
    model.Free;
  end;
end;

If using a TSQLRestServerFullMemory instance, then the test does not pass:

procedure TTestDomSession.TestBasis;
[...]
begin
[...]
  //rest := TSQLRestServerDB.Create(model, db, true);
  rest := TSQLRestServerFullMemory.Create(model, true); // <- use FullMemory Rest Server
  rest.CreateMissingTables();
  person := TSQLPerson.Create;
  try
    TestInsert;
    Check(TestCountAll=MAX);
    Check(TestSelectCount('', [])=MAX);
    Check(TestSelectCount('Firstname=?', ['Firstname-1'])=1);
    Check(TestSelectCount('Lastname=?', ['Lastname-2'])=1);
    Check(TestSelectCount('Lastname=?', ['Lastname-3'])=1);
    Check(TestSelectCount('Lastname=?', ['Lastname-3'])=1);
    Check(TestSelectCount('Weight=?', [1])=1);
    Check(TestSelectCount('Weight>=?', [1])>=1);  // <- This test does not pass when using FullMemory Rest Server!
    Check(TestSelectCount('Weight>=?', [MAX+1])=0);
    Check(TestSelectCount('Weight>?', [50])=50);
    Check(TestSelectCount('Lastname LIKE ?', ['Lastname-3'])=1);
    Check(TestSelectCount('Lastname LIKE ?', ['Lastname-3%'])>0);
  finally
    person.Free;
    rest.Free;
    model.Free;
  end;
end;

It looks like if ">", "<=", "LIKE ?", etc statements are not working with TSQLRestServerFullMemory. What am I doing wrong here?

King regards,
xotox.

#2 mORMot 1 » DDD and many-to-many or one-to-many relationships » 2015-07-31 16:48:22

xotox
Replies: 12

Hi!
i'm playing around with and discovering mORMot's DDD features using PODOs as DTOs.

Scenario:
There are companies...

TDTOCompany = class(TSynPersistent)
private
  fName: RawUTF8;
published
  property Name: RawUTF8 read fName write fName;
end;

... and employees ...

TDTOEmployee = class(TSynPersistent)
private
  fName: RawUTF8;
published
  property Name: RawUTF8 read fName write fName;
end;

We have many-to-many realtionships between companies and employees. Our pivot-link-table has an additional field "email".

Some demo data:

Company | Employee    | Email
--------------------------------------------
Google  | Bob         | bob@google.com
ebay    | Bob         | bob@ebay.com
Google  | Linda       | linda@google.com
ebay    | John        | john@ebay.com

One and the same Bob is working at google and ebay, having two different email addresses.

How should that DTO class for the pivot table look like? I know about TSQLRecordMany at the ORM layer, and this DTO definition is obviously wrong:

TDTOLinkCompanyEmployee = class(TSynPersistent)
private
  fCompany: TDTOCompany;
  fEmployee: TDTOEmployee;
  fEmail: RawUTF8;
published
  property Company: TDTOCompany read fCompany write fCompany;
  property Employee: TDTOEmployee read fEmployee write fEmployee;
  property Email: RawUTF8 read fEmail write fEmail;
end;

How such relationships should be defined in my DTOs?
Add TDTOLink... array to TDTOCompany and TDTOEmployee?
And another one: is TDDDRepositoryRestFactory.ComputeSQLRecord() capable of creating the right TSQLRecordMany classes in such a case? I guess it isn't, so the mapping DTO<->TSQLRecord has to be done manually.
It feels quite unnatural if I try to define this szenario using some kind of TSQLRecordMany syntax in the DTOs.
Do you have any hints?
King regards.

#3 Re: mORMot 1 » TestSQL3 does not pass for current Version using Delphi 7 » 2015-03-31 14:28:37

ab wrote:

I was not able to reproduce the issue.
Your websockets test seems to hang.
Does it hang within the IDE?

Ensure you uploaded all the source files of the framework, including SynBiDirSock in its latest state.

Hmm, strange ...
The test was running standalone, outside the IDE. I've disabled optimization in the compiler options and enabled TD32 Debug infos & Map file.
I just installed the latest source files again, all tests are passed successfull now.

But: I'm absolutely sure that the source files are the same ones i've been using before.
Maybe there is some kind of hard to find race condition in the sources regarding websockets, which happend randomly just within that single testrun?
The issue was:
- TestSQL3.exe took 50% of my overall CPU usage, which means that 2 out of 4 CPU cores have been 100% busy.
- This situation lasted for about 30 minutes, then i've terminated the process using Windows Task Manager.

The last log-message in the console window was:
- Socket API: 4,822 assertions passed  1.96s
     1=1948/s  2=2441/s  5=2396/s  10=2427/s  30=854/s  50=514/s

This means that the hang was definitely inside the Websockets test. 2 of my 4 CPU cores have been busy, this means that there had to be at least 2 Threads running causing that hang.

I'll create a batch file which will run TestSLQ3.exe in a loop. I'll start that batch file when leaving the office and let it run through the night. Tomorrow in the morning i'll check if there was another "hang".

Never say never, and it surely could be my fault, but as I already stated earlier: i'm really sure that the sources did not change between my testruns.

#4 Re: mORMot 1 » TestSQL3 does not pass for current Version using Delphi 7 » 2015-03-31 12:25:29

ab wrote:

I investigated further, and found out an issue when the TSQLRestServerDB class was released, which was detected by FastMM4 in FullDebugMode.

Should be fixed by http://synopse.info/fossil/info/6da8483298
Thanks for the feedback.

There's another problem now ...
TestSQL3.exe output:

 2.10. Multi thread process:
  - Create thread pool: 1 assertion passed  3.44ms
  - TSQLRestServerDB: 4,822 assertions passed  337.40ms
     1=5583/s  2=8264/s  5=6565/s  10=8504/s  30=9084/s  50=8282/s
  - TSQLRestClientDB: 4,822 assertions passed  1.65s
     1=4037/s  2=4373/s  5=4371/s  10=2781/s  30=898/s  50=524/s
  - TSQLRestClientURINamedPipe: 2,412 assertions passed  1.79s
     1=978/s  2=1083/s  5=503/s
  - TSQLRestClientURIMessage: 3,222 assertions passed  543.34ms
     1=2777/s  2=3398/s  5=3536/s  10=2484/s
  - Windows API: 4,822 assertions passed  1.80s
     1=1439/s  2=2468/s  5=2426/s  10=2305/s  30=854/s  50=757/s
  - Socket API: 4,822 assertions passed  1.96s
     1=1948/s  2=2441/s  5=2396/s  10=2427/s  30=854/s  50=514/s

The test "hangs" here, using 2 of my 4 cores with 100% CPU usage.

#5 Re: mORMot 1 » TestSQL3 does not pass for current Version using Delphi 7 » 2015-03-31 08:10:39

ab wrote:

Should be fixed by http://synopse.info/fossil/info/e13877e754

Thanks for the feedback.

The new TSQLRest.RetrieveListJSON() overloaded method has been made available by http://synopse.info/fossil/info/f7bdb4dfc4

Thank you for the quick fix and for intruducing the overloaded method!
Test 2.10 is passed now, but there is another problem in 2.11 now..
FastMM4 log

--------------------------------2015/3/31 9:48:22--------------------------------
FastMM has detected an error during a GetMem operation. FastMM detected that a block has been modified after being freed. 

Modified byte offsets (and lengths): 188(1)

The previous block size was: 272

This block was previously allocated by thread 0x11F4, and the stack trace (return addresses) at the time was:
402ECC [System][@GetMem]
40465F [System][TObject.NewInstance]
404A0A [System][@ClassCreate]
4C3BF2 [mORMot.pas][mORMot][TSQLRestServerMonitor.Create][35280]
4AFB15 [mORMot.pas][mORMot][TSQLRest.Create][27513]
406C36 [System][@DynArraySetLength]
4B75A3 [mORMot.pas][mORMot][TSQLRestServer.Create][30705]
566C39 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Create][861]
566EA8 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Create][907]
605256 [..\SynSelfTests.pas][SynSelfTests][TTestMultiThreadProcess.Test][12511]
40AECF [FastMM4.pas][FastMM4][DebugFreeMem][8900]

The block was previously used for an object of class: TSQLRestServerMonitor

The allocation number was: 46119359

The block was previously freed by thread 0x11F4, and the stack trace (return addresses) at the time was:
402EF7 [System][@FreeMem]
40467D [System][TObject.FreeInstance]
404A55 [System][@ClassDestroy]
4C3CBF [mORMot.pas][mORMot][TSQLRestServerMonitor.Destroy][35290]
4046C3 [System][TObject.Free]
428D9F [Contnrs][TObjectList.Notify]
421688 [Classes][TList.Delete]
4AFBEF [mORMot.pas][mORMot][TSQLRest.Destroy][27532]
4B7863 [mORMot.pas][mORMot][TSQLRestServer.Destroy][30792]
567625 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Destroy][1019]
40AECF [FastMM4.pas][FastMM4][DebugFreeMem][8900]

The current thread ID is 0x11F4, and the stack trace (return addresses) leading to this error is:
40AC94 [FastMM4.pas][FastMM4][DebugGetMem][8733]
402F51 [System][@ReallocMem]
406B54 [System][DynArraySetLength]
406C36 [System][@DynArraySetLength]
4CDECD [mORMot.pas][mORMot][TSQLRecordProperties.Create][39869]
4391BD [..\SynCommons.pas][SynCommons][Iso8601ToDateTimePUTF8CharVar][23401]
40AD02 [FastMM4.pas][FastMM4][DebugGetMem][8757]
4A7037 [mORMot.pas][mORMot][TPropInfo.SetFloatProp][23739]
438F82 [..\SynCommons.pas][SynCommons][Iso8601ToDateTimePUTF8Char][23337]
40AD02 [FastMM4.pas][FastMM4][DebugGetMem][8757]
A79336 [GetRawStackTrace]

Current memory dump of 256 bytes starting at pointer address 7A412500:
90 EC 61 00 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 7F 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
  ì  a  .  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €    €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €

Logfile

D:\sources\xgo.system\src\lib\mORMot\SQLite3\TestSQL3.exe 0.0.0.0 (2015-03-31 09:43:44)
Host=YWO User=xotox CPU=4*9-6-6661 OS=13.1=6.1.7601 Wow64=1 Freq=2208066
Environment variables=ALLUSERSPROFILE=C:\ProgramData	APPDATA=C:\Users\xotox.xgo\AppData\Roaming	COMMANDER_DRIVE=C:	COMMANDER_EXE=C:\totalcmd\TOTALCMD64.EXE	COMMANDER_INI=C:\Users\xotox.xgo\AppData\Roaming\GHISLER\wincmd.ini	COMMANDER_PATH=C:\totalcmd	CommonProgramFiles=C:\Program Files (x86)\Common Files	CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files	CommonProgramW6432=C:\Program Files\Common Files	COMPUTERNAME=YWO	ComSpec=C:\Windows\system32\cmd.exe	DXVCL=d:\sources\devexpress	FP_NO_HOST_CHECK=NO	HOMEDRIVE=C:	HOMEPATH=\Users\xotox.xgo	JAVA_HOME=c:\program files (x86)\java\jdk1.6.0_31	LOCALAPPDATA=C:\Users\xotox.xgo\AppData\Local	LOGONSERVER=\\xgo	NUMBER_OF_PROCESSORS=4	OS=Windows_NT	Path=C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\CollabNet;C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin;C:\Users\Public\Documents\RAD Studio\9.0\Bpl;C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin64;C:\Users\Public\Documents\RAD Studio\9.0\Bpl\Win64;C:\Program Files (x86)\Borland\Delphi7\Bin;C:\Program Files (x86)\Borland\Delphi7\Projects\Bpl\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\NTRU Cryptosystems\NTRU TCG Software Stack\bin\;C:\Program Files\NTRU Cryptosystems\NTRU TCG Software Stack\bin\;C:\Program Files\Wave Systems Corp\Gemalto\Access Client\v5\;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\InstallAware\InstallAware 2012;C:\cygwin\bin;C:\Program Files (x86)\MySQL\MySQL Utilities 1.3.4\;C:\Program Files\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\scripts;C:\Program Files (x86)\java\jre7\bin;C:\Program Files\TortoiseHg\;d:\sources\devexpress\Library\RS16;d:\sources\devexpress\Library\RS16\Win64;d:\sources\devexpress\Library\Delphi7;d:\sources\tms\bpl\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\CollabNet;C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin;C:\Users\Public\Documents\RAD Studio\9.0\Bpl;C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin64;C:\Users\Public\Documents\RAD Studio\9.0\Bpl\Win64;C:\Program Files (x86)\Borland\Delphi7\Bin;C:\Program Files (x86)\Borland\Delphi7\Projects\Bpl\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\NTRU Cryptosystems\NTRU TCG Software Stack\bin\;C:\Program Files\NTRU Cryptosystems\NTRU TCG Software Stack\bin\;C:\Program Files\Wave Systems Corp\Gemalto\Access Client\v5\;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\InstallAware\InstallAware 2012;C:\cygwin\bin;C:\Program Files (x86)\MySQL\MySQL Utilities 1.3.4\;C:\Program Files\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\scripts;C:\Program Files (x86)\java\jre7\bin;C:\Program Files\TortoiseHg\;d:\sources\devexpress\Library\RS16;d:\sources\devexpress\Library\RS16\Win64;d:\sources\devexpress\Library\Delphi7;d:\sources\tms\bpl\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\ant\bin;c:\scripts;c:\Program Files (x86)\Java\jdk1.6.0_31\bin	PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC	PROCESSOR_ARCHITECTURE=x86	PROCESSOR_ARCHITEW6432=AMD64	PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 26 Stepping 5, GenuineIntel	PROCESSOR_LEVEL=6	PROCESSOR_REVISION=1a05	ProgramData=C:\ProgramData	ProgramFiles=C:\Program Files (x86)	ProgramFiles(x86)=C:\Program Files (x86)	ProgramW6432=C:\Program Files	PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\PowerShell\Modules\	PUBLIC=C:\Users\Public	RoxioCentral=C:\Program Files (x86)\Common Files\Roxio Shared\10.0\Roxio Central36\	SESSIONNAME=Console	SystemDrive=C:	SystemRoot=C:\Windows	TEMP=C:\Users\xotox~1.xgo\AppData\Local\Temp	TMP=C:\Users\xotox~1.xgo\AppData\Local\Temp	USERDNSDOMAIN=xgo.NET	USERDOMAIN=xgo	USERNAME=xotox	USERPROFILE=C:\Users\xotox.xgo	windir=C:\Windows
TSQLLog 1.18.1159 FTS3 2015-03-31T09:47:34

20150331 09473434 EXC   EInterfaceFactoryException {"Message":"TInterfacedObjectFake.FakeCall(ICalculator.Add) failed: 'TInterfaceStub returned error: expected exception'"} at 004D5A53 mORMot.RaiseError (32310)  stack trace API 
20150331 09473434 EXC   ESynException {"Message":"expected exception"} at 004DA8E3 mORMot.TInterfaceStub.Invoke (32310)  stack trace API 
20150331 09482412 EXC   EOutOfMemory ("Zu wenig Arbeitsspeicher") at 00406B54 System.DynArraySetLength  stack trace API 00406B54 System.DynArraySetLength 00406C36 System.@DynArraySetLength 004ABC35 mORMot.PropsCreate (26027) 004ACEAC mORMot.TSQLModelRecordProperties.Create (26511) 004AD5D3 mORMot.TSQLModel.SetTableProps (26663) 004AE0A0 mORMot.TSQLModel.Create (26838) 004B76BC mORMot.TSQLRestServer.CreateWithOwnModel (30723) 004E7CAF dddInfraAuthRest.TDDDAuthenticationAbstract.RegressionTests (307) 00606F74 SynSelfTests.TTestDDDSharedUnits.AuthenticationModel (13027) 0047F827 SynTests.TSynTests.Run (954) 006074D3 mORMotSelfTests.SQLite3ConsoleTests (182) 00607891 TestSQL3 (188) 
20150331 09482412 EXC   EOutOfMemory ("Zu wenig Arbeitsspeicher") at 00406B54 System.DynArraySetLength  stack trace API 00406B54 System.DynArraySetLength 00406C36 System.@DynArraySetLength 004ABC35 mORMot.PropsCreate (26027) 004ACEAC mORMot.TSQLModelRecordProperties.Create (26511) 004AD5D3 mORMot.TSQLModel.SetTableProps (26663) 004AE0A0 mORMot.TSQLModel.Create (26838) 004B76BC mORMot.TSQLRestServer.CreateWithOwnModel (30723) 004E7CAF dddInfraAuthRest.TDDDAuthenticationAbstract.RegressionTests (307) 00606F74 SynSelfTests.TTestDDDSharedUnits.AuthenticationModel (13027) 0047F827 SynTests.TSynTests.Run (954) 006074D3 mORMotSelfTests.SQLite3ConsoleTests (182) 00607891 TestSQL3 (188) 
20150331 09482412 EXC   EOutOfMemory ("Zu wenig Arbeitsspeicher") at 00406B54 System.DynArraySetLength  stack trace API 00406B54 System.DynArraySetLength 00406C36 System.@DynArraySetLength 004ABC35 mORMot.PropsCreate (26027) 004ACEAC mORMot.TSQLModelRecordProperties.Create (26511) 004AD5D3 mORMot.TSQLModel.SetTableProps (26663) 004AE0A0 mORMot.TSQLModel.Create (26838) 004B76BC mORMot.TSQLRestServer.CreateWithOwnModel (30723) 004E7CAF dddInfraAuthRest.TDDDAuthenticationAbstract.RegressionTests (307) 00606F74 SynSelfTests.TTestDDDSharedUnits.AuthenticationModel (13027) 0047F827 SynTests.TSynTests.Run (954) 006074D3 mORMotSelfTests.SQLite3ConsoleTests (182) 00607891 TestSQL3 (188) 
20150331 09482412 EXCOS EAccessViolation (C0000005) at 004AEF36 mORMot.TSQLModel.Destroy (27276)  stack trace API 00404A41 System.@ClassCreate 004B76BC mORMot.TSQLRestServer.CreateWithOwnModel (30723) 004E7CAF dddInfraAuthRest.TDDDAuthenticationAbstract.RegressionTests (307) 00606F74 SynSelfTests.TTestDDDSharedUnits.AuthenticationModel (13027) 0047F827 SynTests.TSynTests.Run (954) 006074D3 mORMotSelfTests.SQLite3ConsoleTests (182) 00607891 TestSQL3 (188) 
20150331 09482412 EXCOS EAccessViolation (C0000005) at 004AEF36 mORMot.TSQLModel.Destroy (27276)  stack trace API 

#6 Re: mORMot 1 » TestSQL3 does not pass for current Version using Delphi 7 » 2015-03-31 07:20:46

By the way:
Could you add following overriden function to .\SQLite3\mORMot.pas? I'm using this overloaded function because I have to extend the FormatSQLWhere parameter deeply in my low level DataLayer classes. It is much easier and cleaner to simply append my already formated required params, rather then extending the BoundsSQLWhere const param.

function RetrieveListJSON(Table: TSQLRecordClass; FormatedSQLWhere: RawUTF8; const aCustomFieldsCSV: RawUTF8): RawJSON; overload;
var sql: RawUTF8;
begin
  sql := SQLComputeForSelect(Table,aCustomFieldsCSV, FormatedSQLWhere);
  if sql='' then
    result := '' else
    result := EngineList(sql);
end;

There already is:

function TSQLRest.RetrieveListJSON(Table: TSQLRecordClass; const FormatSQLWhere: RawUTF8; const BoundsSQLWhere: array of const; const aCustomFieldsCSV: RawUTF8): RawJSON;
var sql: RawUTF8;
begin
  sql := SQLComputeForSelect(Table,aCustomFieldsCSV,
    FormatUTF8(FormatSQLWhere,[],BoundsSQLWhere));
  if sql='' then
    result := '' else
    result := EngineList(sql);
end;

#7 Re: mORMot 1 » TestSQL3 does not pass for current Version using Delphi 7 » 2015-03-31 07:07:01

ab wrote:

I guess this is due to the way the multi thread test is written, not how mORMot is implemented.

Looks like that to me too. The testsuite of my current project using mORMot passes all tests without any problem.

#8 mORMot 1 » TestSQL3 does not pass for current Version using Delphi 7 » 2015-03-31 06:51:30

xotox
Replies: 9

Hi,
the lastest Check-in [d0664ef5bf] does not pass the TestSQL3 tests (in test: 2.10. Multi thread process) using Delphi 7.

FastMM4 dump:

--------------------------------2015/3/31 8:37:27--------------------------------
FastMM has detected an error during a GetMem operation. FastMM detected that a block has been modified after being freed. 

Modified byte offsets (and lengths): 188(1)

The previous block size was: 272

This block was previously allocated by thread 0x1254, and the stack trace (return addresses) at the time was:
402ECC [system.pas][System][@GetMem][2439]
40465F [system.pas][System][TObject.NewInstance][8360]
404A0A [system.pas][System][@ClassCreate][9019]
4C791A [mORMot.pas][mORMot][TSQLRestServerMonitor.Create][35269]
4B383D [mORMot.pas][mORMot][TSQLRest.Create][27511]
406C56 [system.pas][System][@DynArraySetLength][16108]
4BB2CB [mORMot.pas][mORMot][TSQLRestServer.Create][30694]
56AFF5 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Create][861]
56B264 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Create][907]
60B7B2 [..\SynSelfTests.pas][SynSelfTests][TTestMultiThreadProcess.Test][12511]
40AF63 [FastMM4.pas][FastMM4][DebugFreeMem][8900]

The block was previously used for an object of class: TSQLRestServerMonitor

The allocation number was: 46010730

The block was previously freed by thread 0x1254, and the stack trace (return addresses) at the time was:
402EF7 [system.pas][System][@FreeMem][2466]
40467D [system.pas][System][TObject.FreeInstance][8366]
404A55 [system.pas][System][@ClassDestroy][9060]
4C79E7 [mORMot.pas][mORMot][TSQLRestServerMonitor.Destroy][35279]
4046C3 [system.pas][System][TObject.Free][8385]
42B8F6 [Contnrs.pas][Contnrs][TObjectList.Notify][304]
42297F [classes.pas][Classes][TList.Delete][2779]
4B3917 [mORMot.pas][mORMot][TSQLRest.Destroy][27530]
4BB58B [mORMot.pas][mORMot][TSQLRestServer.Destroy][30781]
56B9E1 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Destroy][1019]
40AF4E [FastMM4.pas][FastMM4][DebugFreeMem][8893]

The current thread ID is 0x1254, and the stack trace (return addresses) leading to this error is:
40AD28 [FastMM4.pas][FastMM4][DebugGetMem][8733]
402ECC [system.pas][System][@GetMem][2439]
4F8CC4 [..\SynSQLite3Static.pas][SynSQLite3Static][malloc][328]
4FC353 [SynSQLite3Static]
4FCB1D [SynSQLite3Static][sqlite3_memory_highwater]
4FD091 [SynSQLite3Static][sqlite3_realloc]
4FCFF3 [SynSQLite3Static][sqlite3_realloc]
516B4A [SynSQLite3Static][sqlite3_backup_pagecount]
53D1BB [SynSQLite3Static][sqlite3_prepare_v2]
54116F [SynSQLite3Static][sqlite3_prepare_v2]
541D30 [SynSQLite3Static][sqlite3_prepare_v2]

Current memory dump of 256 bytes starting at pointer address 7A3F53C0:
90 4C 62 00 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 7F 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
  L  b  .  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €    €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €

--------------------------------2015/3/31 8:45:41--------------------------------
FastMM has detected an error during a GetMem operation. FastMM detected that a block has been modified after being freed. 

Modified byte offsets (and lengths): 188(1)

The previous block size was: 272

This block was previously allocated by thread 0x115C, and the stack trace (return addresses) at the time was:
402ECC [system.pas][System][@GetMem][2439]
40465F [system.pas][System][TObject.NewInstance][8360]
404A0A [system.pas][System][@ClassCreate][9019]
4C791A [mORMot.pas][mORMot][TSQLRestServerMonitor.Create][35269]
4B383D [mORMot.pas][mORMot][TSQLRest.Create][27511]
406C56 [system.pas][System][@DynArraySetLength][16108]
4BB2CB [mORMot.pas][mORMot][TSQLRestServer.Create][30694]
56AFF5 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Create][861]
56B264 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Create][907]
60B7B2 [..\SynSelfTests.pas][SynSelfTests][TTestMultiThreadProcess.Test][12511]
40AF63 [FastMM4.pas][FastMM4][DebugFreeMem][8900]

The block was previously used for an object of class: TSQLRestServerMonitor

The allocation number was: 46011691

The block was previously freed by thread 0x115C, and the stack trace (return addresses) at the time was:
402EF7 [system.pas][System][@FreeMem][2466]
40467D [system.pas][System][TObject.FreeInstance][8366]
404A55 [system.pas][System][@ClassDestroy][9060]
4C79E7 [mORMot.pas][mORMot][TSQLRestServerMonitor.Destroy][35279]
4046C3 [system.pas][System][TObject.Free][8385]
42B8F6 [Contnrs.pas][Contnrs][TObjectList.Notify][304]
42297F [classes.pas][Classes][TList.Delete][2779]
4B3917 [mORMot.pas][mORMot][TSQLRest.Destroy][27530]
4BB58B [mORMot.pas][mORMot][TSQLRestServer.Destroy][30781]
56B9E1 [mORMotSQLite3.pas][mORMotSQLite3][TSQLRestServerDB.Destroy][1019]
40AF4E [FastMM4.pas][FastMM4][DebugFreeMem][8893]

The current thread ID is 0x115C, and the stack trace (return addresses) leading to this error is:
40AD28 [FastMM4.pas][FastMM4][DebugGetMem][8733]
402ECC [system.pas][System][@GetMem][2439]
4F8CC4 [..\SynSQLite3Static.pas][SynSQLite3Static][malloc][328]
4FC353 [SynSQLite3Static]
4FCB1D [SynSQLite3Static][sqlite3_memory_highwater]
4FD091 [SynSQLite3Static][sqlite3_realloc]
4FCFF3 [SynSQLite3Static][sqlite3_realloc]
516B4A [SynSQLite3Static][sqlite3_backup_pagecount]
53D1BB [SynSQLite3Static][sqlite3_prepare_v2]
54116F [SynSQLite3Static][sqlite3_prepare_v2]
541D30 [SynSQLite3Static][sqlite3_prepare_v2]

Current memory dump of 256 bytes starting at pointer address 7A528F60:
90 4C 62 00 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 7F 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80
  L  b  .  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €    €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €
€  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €  €

Logfile:

D:\sources\xgo.system\src\lib\mORMot\SQLite3\TestSQL3.exe 0.0.0.0 (2015-03-31 08:33:04)
Host=YWO User=xotox CPU=4*9-6-6661 OS=13.1=6.1.7601 Wow64=1 Freq=2208066
Environment variables=ALLUSERSPROFILE=C:\ProgramData	APPDATA=C:\Users\xotox.XCOMP\AppData\Roaming	COMMANDER_DRIVE=C:	COMMANDER_EXE=C:\totalcmd\TOTALCMD64.EXE	COMMANDER_INI=C:\Users\xotox.XCOMP\AppData\Roaming\GHISLER\wincmd.ini	COMMANDER_PATH=C:\totalcmd	CommonProgramFiles=C:\Program Files (x86)\Common Files	CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files	CommonProgramW6432=C:\Program Files\Common Files	COMPUTERNAME=YWO	ComSpec=C:\Windows\system32\cmd.exe	DXVCL=d:\sources\devexpress	FP_NO_HOST_CHECK=NO	HOMEDRIVE=C:	HOMEPATH=\Users\xotox.XCOMP	JAVA_HOME=c:\program files (x86)\java\jdk1.6.0_31	LOCALAPPDATA=C:\Users\xotox.XCOMP\AppData\Local	LOGONSERVER=\\xgo	NUMBER_OF_PROCESSORS=4	OS=Windows_NT	Path=C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\CollabNet;C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin;C:\Users\Public\Documents\RAD Studio\9.0\Bpl;C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin64;C:\Users\Public\Documents\RAD Studio\9.0\Bpl\Win64;C:\Program Files (x86)\Borland\Delphi7\Bin;C:\Program Files (x86)\Borland\Delphi7\Projects\Bpl\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\NTRU Cryptosystems\NTRU TCG Software Stack\bin\;C:\Program Files\NTRU Cryptosystems\NTRU TCG Software Stack\bin\;C:\Program Files\Wave Systems Corp\Gemalto\Access Client\v5\;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\InstallAware\InstallAware 2012;C:\cygwin\bin;C:\Program Files (x86)\MySQL\MySQL Utilities 1.3.4\;C:\Program Files\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\scripts;C:\Program Files (x86)\java\jre7\bin;C:\Program Files\TortoiseHg\;d:\sources\devexpress\Library\RS16;d:\sources\devexpress\Library\RS16\Win64;d:\sources\devexpress\Library\Delphi7;d:\sources\tms\bpl\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\CollabNet;C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin;C:\Users\Public\Documents\RAD Studio\9.0\Bpl;C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin64;C:\Users\Public\Documents\RAD Studio\9.0\Bpl\Win64;C:\Program Files (x86)\Borland\Delphi7\Bin;C:\Program Files (x86)\Borland\Delphi7\Projects\Bpl\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\NTRU Cryptosystems\NTRU TCG Software Stack\bin\;C:\Program Files\NTRU Cryptosystems\NTRU TCG Software Stack\bin\;C:\Program Files\Wave Systems Corp\Gemalto\Access Client\v5\;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\InstallAware\InstallAware 2012;C:\cygwin\bin;C:\Program Files (x86)\MySQL\MySQL Utilities 1.3.4\;C:\Program Files\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\scripts;C:\Program Files (x86)\java\jre7\bin;C:\Program Files\TortoiseHg\;d:\sources\devexpress\Library\RS16;d:\sources\devexpress\Library\RS16\Win64;d:\sources\devexpress\Library\Delphi7;d:\sources\tms\bpl\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\ant\bin;c:\scripts;c:\Program Files (x86)\Java\jdk1.6.0_31\bin	PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC	PROCESSOR_ARCHITECTURE=x86	PROCESSOR_ARCHITEW6432=AMD64	PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 26 Stepping 5, GenuineIntel	PROCESSOR_LEVEL=6	PROCESSOR_REVISION=1a05	ProgramData=C:\ProgramData	ProgramFiles=C:\Program Files (x86)	ProgramFiles(x86)=C:\Program Files (x86)	ProgramW6432=C:\Program Files	PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\PowerShell\Modules\	PUBLIC=C:\Users\Public	RoxioCentral=C:\Program Files (x86)\Common Files\Roxio Shared\10.0\Roxio Central36\	SESSIONNAME=Console	SystemDrive=C:	SystemRoot=C:\Windows	TEMP=C:\Users\xotox~1.xgo\AppData\Local\Temp	TMP=C:\Users\xotox~1.xgo\AppData\Local\Temp	USERDNSDOMAIN=XCOMP.NET	USERDOMAIN=XCOMP	USERNAME=xotox	USERPROFILE=C:\Users\xotox.XCOMP	windir=C:\Windows
TSQLLog 1.18.1157 FTS3 2015-03-31T08:36:34

20150331 08363453 EXC   EInterfaceFactoryException {"Message":"TInterfacedObjectFake.FakeCall(ICalculator.Add) failed: 'TInterfaceStub returned error: expected exception'"} at 004D99F7 mORMot.RaiseError (32299)  stack trace API 
20150331 08363453 EXC   ESynException {"Message":"expected exception"} at 004DE977 mORMot.TInterfaceStub.Invoke (32299)  stack trace API 
20150331 08372923 EXC   EOutOfMemory ("Zu wenig Arbeitsspeicher") at 00402EDC System.@GetMem (2441)  stack trace API 00402EDC System.@GetMem (2441) 0040305C System.ErrorAt (3017) 004FC353 SynSQLite3Static... (1311) 004FCB1D SynSQLite3Static.sqlite3_memory_highwater (1311) 004FD091 SynSQLite3Static.sqlite3_realloc (1311) 004FCFF3 SynSQLite3Static.sqlite3_realloc (1311) 00516B4A SynSQLite3Static.sqlite3_backup_pagecount (1318) 0053D1BB SynSQLite3Static.sqlite3_prepare_v2 (1318) 00541D30 SynSQLite3Static.sqlite3_prepare_v2 (1318) 0054E4D4 SynSQLite3Static.sqlite3_declare_vtab (1318) 005502C1 SynSQLite3Static.sqlite3_declare_vtab (1318) 00550BA8 SynSQLite3Static.sqlite3_declare_vtab (1318) 0053B4CC SynSQLite3Static.sqlite3_set_authorizer (1318) 0053B6D3 SynSQLite3Static.sqlite3_set_authorizer (1318) 0053B7D8 SynSQLite3Static.sqlite3_prepare_v2 (1318) 005376F9 SynSQLite3Static.sqlite3_set_authorizer (1318) 0053B0F0 SynSQLite3Static.sqlite3_set_authorizer (1318) 0053B1D9 SynSQLite3Static.sqlite3_set_authorizer (1318) 0053B26A SynSQLite3Static.sqlite3_set_authorizer (1318) 0053812D SynSQLite3Static.sqlite3_set_authorizer (1318) 0054FC90 SynSQLite3Static.sqlite3_declare_vtab (1318) 005502C1 SynSQLite3Static.sqlite3_declare_vtab (1318) 00550BA8 SynSQLite3Static.sqlite3_declare_vtab (1318) 0053B4CC SynSQLite3Static.sqlite3_set_authorizer (1318) 0053B6D3 SynSQLite3Static.sqlite3_set_authorizer (1318) 
20150331 08372923 EXCOS EAccessViolation (C0000005) at 00534F11 SynSQLite3Static.sqlite3_set_authorizer (1318)  stack trace API 
20150331 08372923 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372923 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372923 fail  #5 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372923 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372924 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372924 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372924 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372924 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372924 fail  #8 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372924 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372924 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372924 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372924 fail  #9 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372924 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372925 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372925 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372925 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372925 fail  #15 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372925 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372925 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372925 fail  #16 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372925 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372925 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372925 fail  #17 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372925 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372925 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372925 fail  #18 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372925 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372925 fail  #19 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372925 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 fail  #30 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 fail  #31 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 fail  #32 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 fail  #33 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 fail  #34 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 fail  #35 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372926 fail  #36 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 fail  #37 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372926 fail  #38 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372926 fail  #39 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372926 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 fail  #70 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  #71 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #72 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #73 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #74 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  #75 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #76 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #77 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #78 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #79 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #80 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #81 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #82 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #83 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  #84 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #85 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #86 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #87 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  #88 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #89 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #90 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #91 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #92 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  #93 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  #94 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  #95 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #96 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 fail  #97 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372927 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372927 fail  #98 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372927 fail  #99 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372927 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 fail  #150 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 fail  #151 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #152 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #153 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 fail  #154 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #155 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #156 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #157 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #158 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 fail  #159 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #160 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 fail  #161 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #162 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #163 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #164 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 fail  #165 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #166 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #167 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #168 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #169 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #170 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #171 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #172 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #173 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #174 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #175 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #176 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #177 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #178 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #179 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #180 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #181 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #182 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #183 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #184 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #185 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #186 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #187 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #188 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #189 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #190 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #191 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #192 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #193 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #194 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #195 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372928 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372928 fail  #196 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372928 fail  #197 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372928 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372929 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372929 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372929 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372929 EXC   ESQLite3Exception {"ErrorCode":0,"SQLite3ErrorCode":0,"Message":"TSQLRequest.Reset called with no previous Request"} at 004F75A0 SynSQLite3.TSQLRequest.Reset (4628)  stack trace API 
20150331 08372929 fail  #198 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372929 EXCOS EAccessViolation (C0000005) at 76EE8910  stack trace API 0045645B SynCommons.TPrecisionTimer.Pause (32320) 0056A777 mORMotSQLite3.TSQLRestServerDB.GetAndPrepareStatementRelease (748) 0056BEC0 mORMotSQLite3.TSQLRestServerDB.InternalExecute (1111) 0056AD07 mORMotSQLite3.TSQLRestServerDB.MainEngineAdd (824) 004C51A5 mORMot.TSQLRestServer.EngineAdd (32299) 004BF3B1 mORMot.TSQLRestServerURIContext.ExecuteORMWrite (32095) 004E0B61 mORMot.BackgroundExecuteProc (32299) 00429430 Classes.CheckSynchronize (9339) 0060B9A7 SynSelfTests.TTestMultiThreadProcess.Test (12553) 0060BD69 SynSelfTests.TTestMultiThreadProcess.MainThread (12616) 00483003 SynTests.TSynTests.Run (954) 0060DA27 mORMotSelfTests.SQLite3ConsoleTests (182) 0060DDE5 TestSQL3 (188) 
20150331 08372929 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372929 EXC   EAccessViolation ("Zugriffsverletzung bei Adresse 76EE8910 in Modul 'ntdll.dll'. Schreiben von Adresse 00000010") at 00429950 Classes.TThread.Synchronize (9601)  stack trace API 
20150331 08372929 fail  #199 Rest.Add stack trace API 00482523 SynTests.TSynTestCase.TestFailed (714) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 
20150331 08372929 fail  TTestMultiThreadProcess(7EEE31D0) Multi thread process: Main thread "Rest.Add" stack trace API 00483C42 SynTests.TSynTestsLogged.Failed (1116) 0048253D SynTests.TSynTestCase.TestFailed (716) 00482124 SynTests.TSynTestCase.CheckFailed (558) 0060C171 SynSelfTests.TTestMultiThreadProcessThread.Execute (12722) 00429509 Classes.ThreadProc (9372) 0040547A System.ThreadWrapper (11557) 

#9 Re: mORMot 1 » Serious bug when passing TRawUTF8DynArray through interfaces? » 2015-02-25 14:53:40

Ok guys, sorry for making trouble! The problem was sitting in front of the Monitor smile

In a quite deeply nested procedure inside the client was a code like:

for x:=Low(a1) to High(a1) do pers.FillFrom(Pointer(a1[x]));  

instead of:

  for x:=Low(a1) to High(a1) do pers.FillFrom(a1[x]);

Using Pointer(a1[x]) in FillPrepare changes the TRawUTF8DynArray content to:

{"ID  0 "Firstname  "Firstname 0  "Lastname  "Firstname 0
{"ID  0 "Firstname  "Firstname 1  "Lastname  "Firstname 1
{"ID  0 "Firstname  "Firstname 2  "Lastname  "Firstname 2
{"ID  0 "Firstname  "Firstname 3  "Lastname  "Firstname 3
{"ID  0 "Firstname  "Firstname 4  "Lastname  "Firstname 4
{"ID  0 "Firstname  "Firstname 5  "Lastname  "Firstname 5
{"ID  0 "Firstname  "Firstname 6  "Lastname  "Firstname 6
{"ID  0 "Firstname  "Firstname 7  "Lastname  "Firstname 7
{"ID  0 "Firstname  "Firstname 8  "Lastname  "Firstname 8
{"ID  0 "Firstname  "Firstname 9  "Lastname  "Firstname 9

Thats's it.
But thanks for your help!!!

#10 Re: mORMot 1 » Serious bug when passing TRawUTF8DynArray through interfaces? » 2015-02-25 14:09:25

EMartin wrote:

Maybe you should use GetData(out arr: TRawUTF8DynArray) if the server side fill with data.

Thats exactly how it's implemented right now.

Well I just wrote a test to show the problem, but the Test works as expected!
As far as I can see, the test is doing exactly the same thing my real project does. I'm speechless.

???


Well, here's the Testcode:

program Test;

{$APPTYPE CONSOLE}

uses
  FastMM4,
  SynSQLite3Static,
  SysUtils,
  SynCommons,
  SynSQLite3,
  mORMot,
  mORMotSQLite3,
  mORMotHTTPServer,
  mORMotHTTPClient;

type
  IMyInterface = interface(IInvokable)
  ['{1A664CAB-BD0E-44B3-BB5F-5CAEB425FDB3}']
    procedure GetData(out Arr: TRawUTF8DynArray; out Arr2: TRawUTF8DynArray; out S: RawUTF8);
  end;

  TMyInterface = class(TInterfacedObject, IMyInterface)
  public
    procedure GetData(out Arr: TRawUTF8DynArray; out Arr2: TRawUTF8DynArray; out S: RawUTF8);
  end;

  TSQLRecordBase=class(TSQLRecord)
  private
    fAProp: RawUTF8;
  published
    property AProp: RawUTF8 read fAProp write fAProp;
  end;

  TSQLPerson = class(TSQLRecordbase)
  private
    fFirstname: RawUTF8;
    fLastname: RawUTF8;
  published
    property Firstname: RawUTF8 index 80 read fFirstname write fFirstname;
    property Lastname: RawUTF8 index 80 read fLastname write fLastname;
  end;

  TmyServer = class
  private
    fModel: TSQLModel;
    fRestServer: TSQLRestServerDB;
    fHTTPServer: TSQLHttpServer;
  public
    constructor Create;
    destructor Destroy; override;
  end;

  TmyClient = class
  private
    fHTTPClient: TSQLHttpClient;
    fModel: TSQLModel;
    fmyInterface: ImyInterface;
  public
    constructor Create;
    destructor Destroy; override;
    procedure TestIt;
  end;

function CreateModel: TSQLModel;
begin
  result := TSQLModel.Create([TSQLPerson]);
end;

{ TMyInterface }

procedure TMyInterface.GetData(out Arr: TRawUTF8DynArray; out Arr2: TRawUTF8DynArray; out S: RawUTF8);
const
  count = 10;
var
  i: integer;
  person: TSQLPerson;
begin
  person := TSQLPerson.Create;
  try
    SetLength(Arr, count);
    SetLength(Arr2, count);
    for i:=Low(Arr) to High(Arr) do begin
      person.Firstname := FormatUTF8('Firstname #%', [i]);
      person.Lastname := FormatUTF8('Lastname #%', [i]);
      Arr[i] := ObjectToJSON(person);
      Arr2[i] := ObjectToJSON(person);
    end;
    S := Arr[0];
  finally
    person.Free;
  end;
end;


{ TmyServer }

constructor TmyServer.Create;
begin
  fModel := CreateModel;
  fRestServer := TSQLRestServerDB.Create(fModel, ChangeFileExt(ParamStr(0), '.db'), true);
  with fRestServer do begin
    DB.Synchronous := smNormal;
    DB.LockingMode := lmExclusive;
    CreateMissingTables;
    ServiceRegister(TmyInterface, [TypeInfo(ImyInterface)], sicClientDriven);
  end;
  fHTTPServer := TSQLHttpServer.Create('8080', fRestServer, '+', useHttpApiRegisteringURI);
end;

destructor TmyServer.Destroy;
begin
  fHTTPServer.Free;
  fRestServer.Free;
  fModel.Free;
end;

{ TmyClient }

constructor TmyClient.Create;
begin
  fModel := CreateModel;
  fHTTPClient := TSQLHttpClient.Create('127.0.0.1', '8080', fModel);
  fHTTPClient.SetUser('Admin', 'synopse');
  fHTTPClient.ServiceRegisterClientDriven(TypeInfo(ImyInterface), fmyInterface);
end;

destructor TmyClient.Destroy;
begin
  fmyInterface := nil;
  fHttpClient.Free;
  fModel.Free;
end;

procedure TmyClient.TestIt;
var
  arr, arr2: TRawUTF8DynArray;
  s: RawUTF8;
  //person: TSQLPerson;
  i: integer;
begin
  fmyInterface.GetData(arr, arr2, s);
  writeln(Format('Length(arr): %d', [Length(arr)]));
  if (s=arr[0]) then
    writeln(s=arr[0])
  else begin
    writeln(s);
    writeln(arr[0]);
  end;
  for i:=Low(arr) to high(arr) do
    writeln(arr[i]);
  for i:=Low(arr2) to high(arr2) do
    writeln(arr2[i]);
end;

var
  myServer: TmyServer;
  myClient: TmyClient;

begin
  myServer := TmyServer.Create;
  myClient := TmyClient.Create;
  try
    myClient.TestIt;
    readln;
  finally
    myClient.Free;
    myServer.Free;
  end;
end.

#11 Re: mORMot 1 » Serious bug when passing TRawUTF8DynArray through interfaces? » 2015-02-25 13:19:01

I can not use GetData(const arr: TRawUTF8DynArray), because "arr" is filled by server, then sent to client. Sever has to call SetLength(arr) etc.

I'll provide a demo asap.
Thanks.

#12 mORMot 1 » Serious bug when passing TRawUTF8DynArray through interfaces? » 2015-02-25 08:38:47

xotox
Replies: 7

Hi,
either there's a serious bug when passing TRawUTF8DynArray parameters throug service interfaces, or i'm doing something wrong.

In my interface, I have a function like "function GetData(arr: TRawUTF8DynArray): boolean".

arr contains RawUTF8 values which were encoded using ObjectToJSON(someSQLRecord). When retrieving the array on client-side, the JSON data is broken.
eg. : 

Before sending data arr[0] contains:

{"ID":1,"Title":"Mr.","Name":"Pablo"}

when received, arr[0] contains:

{"ID  1 "Title  "Mr.  "Name  "Pablo  "

What should I do???
Please help!

Edit:
If I pass arr[0] as a simple RawUTF8, it works fine.
How can I pass a list/array of JSON encoded RawUTF8 Strings to the client?

#13 Re: mORMot 1 » SQLRecord.FillPrepareMany serialization to client » 2015-02-23 15:25:12

There's a Problem, the returned JSON contains field names like "AID, A01, A02, ...", but not the real fieldnames. Is there a way to get the real fieldnames out of this?

Edit:
Ok, that was not the real Problem.

function TSQLRecord.EnginePrepareMany(aClient: TSQLRest; const aFormatSQLJoin: RawUTF8;
  const aParamsSQLJoin, aBoundsSQLJoin: array of const;
  out ObjectsClass: TSQLRecordClassDynArray; out SQL: RawUTF8): RawUTF8;

I could pass ObjectsClass and SQL back to the client. On client side following code is executed

var
  T: TSQLTable;
  source: TSQLSource;
  SQL, JSON: RawUTF8; 

...
  
  T := TSQLTableJSON.CreateFromTables([TSQLSource, TSQLDestList, TSQLDest], SQL, JSON);
  for i:=0 to T.RowCount-1 do
  begin
    source.FillFrom(T, i);
    CheckNot(source.SourceField1 = '');  // success, SourceField1 filled.                
    CheckNot(source.DestList.PivotField1 = ''); // success, Pivot field filled.
    CheckNot(source.DestList.Dest.DestField1 = '');  // this crashes, source.DestList.Dest is not initialized.
  end;

Is there some way to let TSQLRecord.FillFrom create Dest instances? The JSON RawUTF8 String contains all necessary informations to do this ...in theory at least smile

#14 Re: mORMot 1 » SQLRecord.FillPrepareMany serialization to client » 2015-02-23 15:03:54

Thanks a lot!

I'll give it a try in a few mins...

#15 mORMot 1 » SQLRecord.FillPrepareMany serialization to client » 2015-02-23 11:24:17

xotox
Replies: 3

Hi,

i'm building an interface service based application using mORMot. Clients are not allowed to directly use TSQLRecord.Retrieve, Server.Add, Server.Update etc. methods. Client/Server communication is always done using the interface service.
I need some advice now...

My DataModel uses a lot of TSQLRecordMany classes. Inside the business logic theres a heavy use of SQLRecord.FillPrepareMany(fServer, 'DestList.Dest.ID=?', [id]);
This content has to be serialized and sent to the client somehow. Whats the best practice for doing this?

Similiar code is used on server-side:

  SQLRecord.FillPrepareMany(fServer, 'DestList.Dest.ID=?', [], [id]);
  while SQLRecord.FillOne do
  begin
    // should i serialize every single dataset using ObjectToJSON, append them one to each other, then send back to client?
    // problem is ObjectToJSON will not serialize the nested DestList.Dest object.

  end;

Is there a way to say: hey, take the whole SQLRecord thing, fill all rows, send to client using some kind of Table/RawJSON/whatever. Including the nested DestList.Dest class if possible?

Thanks in advance.

#16 Re: mORMot 1 » Forcing textfield size validation » 2015-02-21 18:54:25

Hi!

I've implemented it using RTTI. Works downto Delphi 7 which is the oldest Delphi Version I still have installed. Feel free to reuse my code. Maybe it will help someone, or maybe there's a way to integrate it directly into the Framework.
The code will add {"MinLenght":0,"MaxLength":[field_size]} Validators for all RawUTF8 index [field_size] published properties. Well, to all TypInfo.tkLString TypeKinds better said. smile

procedure AddMaxLengthValidators(const SQLRecordClasses: array of TSQLRecordClass; const TypeKinds: TTypeKinds = [TypInfo.tkLString]);
var
  iClasses: integer;
  cProps: integer;
  iProps: integer;
  list: PPropList;
begin
  for iClasses := Low(SQLRecordClasses) to High(SQLRecordClasses) do
  begin
    cProps := GetPropList(SQLRecordClasses[iClasses].ClassInfo, TypeKinds, nil);
    GetMem(list, cProps * SizeOf(PPropInfo));
    try
      GetPropList(SQLRecordClasses[iClasses].ClassInfo, TypeKinds, List);
      for iProps := 0 to Pred(cProps) do
        if list^[iProps]^.Index > 0 then
          SQLRecordClasses[iClasses].AddFilterOrValidate(List^[iProps]^.Name,
            TSynValidateText.Create(Format('{"MinLength":0,"MaxLength":%d}', [list^[iProps]^.Index])));
    finally
      FreeMem(list, cProps * SizeOf(PPropInfo));
    end;
  end;
end;

Example Usage:

...

var
  mySQLRecords: array[0..1] of TSQLRecordClass = (TSQLmyRecord1, TSQLmyRecord2);

function CreateModel: TSQLModel;
begin
  result := TSQLModel.Create(mySQLRecords);
  AddMaxLengthValidators(mySQLRecords);
end;

...

#17 mORMot 1 » Forcing textfield size validation » 2015-02-12 12:09:54

xotox
Replies: 3

Hi all!

I'm using a SQLite3 backed database and define a TSQLRecord text field as:

property FirstName: RawUTF8 index 80 read fFirstName write fFirstName;

I can set FirstName to e.g. 100 characters, and there is no automatic size check. The value will be stored as given with 100 characters.
Is it possible to force TSQLRecord to automatically check the field size, even if using SQLite as database?
Or do I really have to add Validators for all fields?
Background:
In future it might be possible to switch the database to another DB Server, e.g. MSSQL.
It would cause a lot of trouble if there are records not fitting into the MSSQL database.

Thanks in advance!

Board footer

Powered by FluxBB