Tutorial by Topics: d

Sails comes installed with a powerful ORM/ODM called Waterline, a datastore-agnostic tool that dramatically simplifies interaction with one or more databases. It provides an abstraction layer on top of the underlying database, allowing you to easily query and manipulate your data without writing v...
AttributeDetailsauth(String) Specify whether the web Application code signs on to the corresponding resource manager programmatically, or whether the Container will sign on to the resource manager on behalf of the application. The value of this attribute must be Application or Container. This attri...
Understanding accessibility is a process of relating four main categories of abilities to software development. These broad categories are: visual hearing mobility cognitive For each category, the needs of users needs to be considered. It must also be understood that every person has a ra...
If models are correctly related you can easily load related data using EntityFramework. You have three options to chose from: lazy loading, eager loading and explicit loading. Models used in examples: public class Company { public int Id { get; set; } public string FullName { get; set...
GPU computing requires a 'platform' which can connect to and utilize the hardware. The two primary low-level languages that accomplish this are CUDA and OpenCL. The former requires installation of the proprietary NVIDIA CUDA Toolkit and is only applicable on NVIDIA GPUs. The latter is both comp...
Transactions are protective blocks where SQL statements are only permanent if they can all succeed as one atomic action. The classic example is a transfer between two accounts where you can only have a deposit if the withdrawal succeeded and vice versa. Transactions enforce the integrity of the da...
infix [integer] ops infixl [integer] ops infixr [integer] ops Declaration componentMeaninginfixrthe operator is right-associativeinfixlthe operator is left-associativeinfixthe operator is non-associativeoptional digitbinding precedence of the operator (range 0...9, default 9)op1, ... , opn...
Firebird (firebird) is an open-source Relational Database Management System (RDBMS). It is open source and free. It is powerful and easily managed. Firebird runs on various systems. For example, Firebird 2.5 runs on Windows (32- and 64-bit), various Linux versions (32- and 64- bit), Solaris (Spar...
This section provides an overview of what varnish is, and why a developer might want to use it. It should also mention any large subjects within varnish, and link out to the related topics. Since the Documentation for varnish is new, you may need to create initial versions of those related topic...
Programs written in C++ need to be compiled before they can be run. There is a large variety of compilers available depending on your operating system. Most operating systems ship without a compiler, and they have to be installed later. Some common compilers choices are: GCC, the GNU Compil...

Page 91 of 221