polymorphism » Page 3 » Custom Developer Tools and VCL Components | Developer Team

TMS Aurelius v5.3 / TMS Business Core Library v1.26 Source Code

TMS Aurelius v5.3 / TMS Business Core Library v1.26 Source Code
TMS Aurelius v5.3 / TMS Business Core Library v1.26 Source Code


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

Feature details
Several database servers supported (MS SQL Server, Firebird, MySQL, DB2, Interbase, Oracle,...)
Several database-access components supported (dbExpress, AnyDac, SQLDirect, ADO, IBX,...)
Multi-platform solution - Win32, Win64, macOS, VCL, FireMonkey
Saving, updating and loading of entity objects in an object-oriented way
Read more

TMS Aurelius v5.1 / TMS Business Core Library v1.25.0.0

TMS Aurelius v5.1 / TMS Business Core Library v1.25.0.0
TMS Aurelius v5.1 / TMS Business Core Library v1.25.0.0


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

Feature details
Several database servers supported (MS SQL Server, Firebird, MySQL, DB2, Interbase, Oracle,...)
Several database-access components supported (dbExpress, AnyDac, SQLDirect, ADO, IBX,...)
Multi-platform solution - Win32, Win64, macOS, VCL, FireMonkey
Saving, updating and loading of entity objects in an object-oriented way
TAureliusDataSet for easy and fast interfacing to DB-aware controls in VCL
Read more

TMS Aurelius 4.3 Full Source

TMS Aurelius 4.3 Full Source
TMS Aurelius 4.3 Full Source


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

Benefits
Aurelius brings all benefits an application can obtain from using an ORM framework:
Productivity: Avoid complex SQL statements that can only be verified at runtime. Code directly with objects.
Read more

First Steps in Java

First Steps in Java
First Steps in Java


Get a good grasp on the basics of Java programming language: topics ranging from basic syntax to database operations This course is designed for students or anyone else who want to start Java as a programming language. We will consider several topics ranging from installing Java itself to MySQL database operations. The first chapter will be about the basics: loops, decision making, variables and so on. The next chapters will be about exception handling as well as how to deal with input/output operations. Of course, we will consider the object orinted principles: inheritance, polymorphism and encapsulation as well. The last chapter will be about how to connect to a MySQL database and how to make the basic database-related operations: inserting new items, removing items or updating items in the database table.
Read more

TMS Aurelius 2.2 Full Source XE-XE7

TMS Aurelius 2.2 Full Source XE-XE7
TMS Aurelius 2.2 Full Source XE-XE7 | 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