First .NET database that targets Web & Web 2.0 is released

bablind

New member
Joined
Nov 21, 2008
Messages
1
Programming Experience
Beginner
The first release of Eloquera, the fusion database, is out. Eloquera's architecture and technology specifically targets at the Web developer.

It provides the desired objectives of speedier development and maintenance. At the same time, it provides the seemingly contradictory benefit of startlingly improved performance. Performance advantages that become more and more evident the more complex the actual environment.

Designers of Eloquera have also recognized that it was important that there should not be any steep learning curve for developers. Hence a familiar SQL interface has been maintained. Existing developers can be up and running with Eloquera in a matter of hours.

Eloquera will radically reduce the cost of web development and maintenance. It provides speed of development in conjunction with dramatically higher production performance, and can scale to massive sized databases.

Some of the unique features Eloquera queries have:

Supported ALMOST operation for approximate search
SELECT Book WHERE AuthorName ALMOST 'Bil' WITHIN 2

Powerful regular expressions
SELECT Book WHERE AuthorName REGEX '\w+@[a-z_]+\.[a-z]{2,}'

Culture support
SELECT Book WHERE AuthorName LIKE['ft-FR'] '%Exupery'

Get parent only
SELECT ONLY Paper WHERE Publisher CONTAINS 'Ted'

At the same time entire interface is very straightforward

For example insert:
db.Insert(new Book());

And to query:
IEnumerable books = db.ExecuteQuery("SELECT Book WHERE Price > 1e3 ORDER BY Title");


Eloquera home Eloquera - Home of the first fusion database


"30 seconds tutorial" 30 seconds tutorial

It is even possible to try queries online Online queries

It can be downloaded at Download

Eloquera website is powered by Eloquera DB.
 
Last edited:
Back
Top