database » Page 364 » Developer.Team - Developers Paradise!

LLBLGen Pro 4.0

LLBLGen Pro 4.0
LLBLGen Pro 4.0 | 14.5 Mb


LLBLGen Pro is a data-access solution. You use the LLBLGen Pro Designer to create the entity/domain model, define the mappings and generate source-code for one of the four supported O/R mapping frameworks: Entity Framework, NHibernate, Linq to SQL or the LLBLGen Pro Runtime Framework. You use the generated source-code combined with the O/R mapping framework of your choice to access your database and consume the data in that database.
Read more

DeskSoft EarthTime 4.3.7

DeskSoft EarthTime 4.3.7
DeskSoft EarthTime 4.3.7 | 4 Mb


EarthTime displays the local time and date of any place in the world. It has a built-in database of more than 3000 cities worldwide but users can add any number of custom locations. Alarms can be set on the local time of any city in the world. Many options allow flexible customization.
Read more

VistaDB 3.4 Build 63 Retail

VistaDB 3.4 Build 63 Retail
VistaDB 3.4 Build 63 Retail | 21 Mb


VistaDB is the only .Net embedded database that allows you to Xcopy a single DLL for both 32 and 64 bit runtime support. Want ClickOnce deployment for your .Net application? VistaDB requires zero config on the client. No more worries about COM deployment for the database engine! Even our database files are built for ease of deployment - a single database file with no external logs or complex permissions.
Read more

Devart UniDAC 5.2.5 Full Source

Devart UniDAC 5.2.5 Full Source
Devart UniDAC 5.2.5 Full Source | 7.5 Mb


Universal Data Access Components (UniDAC) is a powerful library of nonvisual cross-database data access components for Delphi, Delphi for .NET, C++Builder, and Lazarus (Free Pascal). We have combined the experience of long-term successful development into one product, which provides unified access to the popular database servers like Oracle, Microsoft SQL Server, MySQL, InterBase, Firebird, PostgreSQL, SQLite, DB2, Microsoft Access, Sybase Advantage Database Server, Sybase Adaptive Server Enterprise, and other databases (using ODBC provider).
Read more

TMS Aurelius 2.20 Full Source

TMS Aurelius 2.20 Full Source
TMS Aurelius 2.20 Full Source | 4.8 Mb


ORM framework for Delphi with full support for data manipulation, complex and advanced queries, inheritance, polymorphism, and more...

    Query1.Sql.Text := 'SELECT I.ID AS INVOICE_ID, I.INVOICE_TYPE, I.INVOICE_NO, I.ISSUE_DATE, I.PRINT_DATE, ' +  
      'C.ID AS CUSTOMER_ID, C.CUSTOMER_NAME, C.SEX, C.BIRTHDAY, N.ID AS COUNTRY_ID, N.COUNTRY_NAME' +  
      'FROM INVOICE AS I INNER JOIN CUSTOMER AS C ON (C.ID = I.CUSTOMER_ID) ' +  
      'LEFT JOIN COUNTRY AS N ON (N.ID = C.COUNTRY_ID)' +  
      'WHERE I.ID = :INVOICE_ID;'  
    Query1.ParamByName('INVOICE_ID').AsInteger := 1;  
    Query1.Open;  
    ShowMessage(Format('Invoice No: %d, Customer: %s, Country: %s',  
      [Query1.FieldByName('INVOICE_NO').AsInteger,  
      Query1.FieldByName('CUSTOMER_NAME').AsString,  
      Query1.FieldByName('COUNTRY_NAME').AsString]));  
Read more