Question posted in the embarcadero forum:
Is there a way in your wrapper to know whether the field is NULL (say, Integer or String field)?
In most databases '' and null are different values.
Thanks,
Michael
2010-01-05
2010-01-05. Open Source › mORMot Framework
Question posted in the embarcadero forum:
Is there a way in your wrapper to know whether the field is NULL (say, Integer or String field)?
In most databases '' and null are different values.
Thanks,
Michael
2010-01-05. Open Source › mORMot Framework
In the codegear forum, I posted this example code, to illustrate the Object-relational mapping (ORM) aspect of the framework :
People := TSQLPeople.Create;
try
People.Name := 'Smith';
People.Address := 'New York City';
People.BirthDate := Now;
ID := Client.Add(People);
finally
People.Free;
end;
Albert Drent posted this question:
What's the advantage above the usage of SQL?
with MyQuery do begin
sql.text := 'insert into people values ("Smith","New York City","2008-01-01")';
execSQL;
end;
2010-01-01
2010-01-01. Open Source › mORMot Framework
Some details about the current framework status, and the fact that it does compile only under Delphi 7 by now.
2009-12-20
2009-12-20. Open Source › mORMot Framework
How to download and install the source code of this framework.
2009-12-20. Open Source › mORMot Framework
More details (source code, JSON, REST) about this framework.
2009-12-20. Open Source › Enhanced Delphi Run Time
Purpose of these files is to provide speed and bug corrections to the Run Time Library and the VCL of Delphi 7.
2008-03-08
2008-03-08. Open Source › mORMot Framework
The Synopse SQLite3 database Framework interfaces the SQlite3 database engine into pure Delphi code: database access, User Interface generation, security, i18n and reporting are handled in a safe and fast Client/Server AJAX/RESTful model.
page 52 of 52 - next entries »