This is a mirror of official site: http://jasper-net.blogspot.com/

Eloquera Database 2.7.0 is released (native .NET object database)

| Tuesday, June 8, 2010
Eloquera ( www.eloquera.com ) originally designed and developed for use in the Web environment and it’s designed as native .NET application in C#.

Eloquera wasn’t ported from Java as many other databases.Eloquera natively as part of architecture supports:

Save the data with a single line of code

// Create the object we would like to work with.
Movie movie = new Movie()
{
   Location = "Sydney",
   Year = 2010,
   OpenDates = new DateTime[] { new DateTime(2003, 12, 10), new DateTime(2003, 10, 3) } };

// And here is where the magic begins...
// Store the object - no conversion required.
db.Store(movie);

Read more: ASP .NET
Read more: Eloquera

Posted via email from jasper22's posterous

0 comments: