Tutorial by Topics

ParameterDescription--delete -Dempty the table before importing the text file--fields-optionally-enclosed-bydefine the character that quotes the fields--fields-terminated-byfield terminator--ignore -iignore the ingested row in case of duplicate-keys--lines-terminated-bydefine row terminator--passwo...
What is Template Haskell? Template Haskell refers to the template meta-programming facilities built into GHC Haskell. The paper describing the original implementation can be found here. What are stages? (Or, what is the stage restriction?) Stages refer to when code is executed. Normally, co...
Fresco is a powerful system for displaying images in Android applications. In Android 4.x and lower, Fresco puts images in a special region of Android memory (called ashmem). This lets your application run faster - and suffer the dreaded OutOfMemoryError much less often. Fresco also supports strea...
This section provides an overview of what image is, and why a developer might want to use it. It should also mention any large subjects within image, and link out to the related topics. Since the Documentation for image is new, you may need to create initial versions of those related topics. ...
Named Arguments Ref: MSDN Named arguments enable you to specify an argument for a particular parameter by associating the argument with the parameter’s name rather than with the parameter’s position in the parameter list. As said by MSDN, A named argument , Enables you to pass the argument t...
Practical examples of using Roslyn for source code transformations. Roslyn syntax trees are immutable. By calling a method like ReplaceNodes we generate a new node rather than modifying the existing one. This requires you to always change the object you have been working on.
This section provides an overview of what vsto is, and why a developer might want to use it. It should also mention any large subjects within vsto, and link out to the related topics. Since the Documentation for vsto is new, you may need to create initial versions of those related topics.
The SQLite documentation has a reference of all PRAGMA statements.
This section provides an overview of what xslt-1.0 is, and why a developer might want to use it. It should also mention any large subjects within xslt-1.0, and link out to the related topics. Since the Documentation for xslt-1.0 is new, you may need to create initial versions of those related to...
Note: Don't use Repeater in {N}+Angular-2 applications! The *ngRepeat is obsolete directive in Angular-2. When you need to display repeating item patterns use either ListView or *ngFor structural directive.
FTPClient connect(InetAddress host, int port) FTPClient login(String username, String password) FTPClient disconnect() FTPReply getReplyStrings() boolean storeFile(String remote, InputStream local) OutputStream storeFileStream(String remote) boolean setFileType(int fileType) boolean complet...
X++ is an object-oriented language with similarities to C#. X++ is part of the MorphX development platform that you use to construct accounting and business management systems. MSDN: X++ Programming Guide VersionAdditional InformationRelease date7Dynamics 365 for Finance and Operations, Enter...
This section provides an overview of what responsive-design is, and why a developer might want to use it. It should also mention any large subjects within responsive-design, and link out to the related topics. Since the Documentation for responsive-design is new, you may need to create initial v...
LOCK TABLES table_name [READ | WRITE]; // Lock Table UNLOCK TABLES; // Unlock Tables Locking is used to solve concurrency problems.Locking is required only when running a transaction, that first read a value from a database and later write that value in to the database. Locks are n...
module Name where -- export all names declared in this file module Name (functionOne, Type (..)) where -- export only functionOne, Type, and Type's constructors import Module -- import all of Module's exported names import qualified Module as MN -- qualified import import...

Page 204 of 428