Tutorial by Topics: lt

public static SqlMapper.GridReader QueryMultiple(this IDbConnection cnn, string sql, object param = null, IDbTransaction transaction = null, int? commandTimeout = null, CommandType? commandType = null) public static SqlMapper.GridReader QueryMultiple(this IDbConnection cnn, CommandDefinition comm...
Default Method introduced in Java 8, allows developers to add new methods to an interface without breaking the existing implementations of this interface. It provides flexibility to allow the interface to define an implementation which will be used as default when a class which implements that inter...
filter(function, iterable) itertools.ifilter(function, iterable) future_builtins.filter(function, iterable) itertools.ifilterfalse(function, iterable) itertools.filterfalse(function, iterable) ParameterDetailsfunctioncallable that determines the condition or None then use the identity fu...
public static IEnumerable<TReturn> Query<TFirst, TSecond, TReturn>( this IDbConnection cnn, string sql, Func<TFirst, TSecond, TReturn> map, object param = null, IDbTransaction transaction = null, bool buffered = true, string splitOn = "Id", int? commandTimeout = null, C...
ALTER command in SQL is used to modify column/constraint in a table ALTER TABLE [table_name] ADD [column_name] [datatype]
Threads allow Python programs to handle multiple functions at once as opposed to running a sequence of commands individually. This topic explains the principles behind threading and demonstrates its usage.
Stream Filter provides the ability to filter messages on the server before they are sent to a subscriber is a popular request. With the introduction of our v4.x SDKs, you now have the ability to do so using message meta data.
SELECT column_name FROM table_name WHERE column_name operator value SELECT column_name, aggregate_function(column_name) FROM table_name GROUP BY column_name HAVING aggregate_function(column_name) operator value
XSLT (XSL Transformations, Extensible Stylesheet Language Transformations) is a programming language that is based on XML and whose purpose is to manipulate and transform XML. It is a functional programming language and a W3C standard. Using XSLT you can transform one or more XML documents into a ...
structure: /* code */ endstructure; When mixing the alternative structure for switch with HTML, it is important to not have any whitespace between the initial switch($condition): and first case $value:. Doing this is attempting to echo something (whitespace) before a case. All control stru...
Multithreading is a programming technique which consists of dividing a task into separate threads of execution. These threads run concurrently, either by being assigned to different processing cores, or by time-slicing. When designing a multithreaded program, the threads should be made as indepen...
{{ my_date_time|my_custom_filter }} {{ my_date_time|my_custom_filter(args) }} ParameterDetailsvalueThe value passed in by Jinja, to be filteredargsExtra arguments to be passed into the filter function
As database tables grow, it's often useful to limit the results of queries to a fixed number or percentage. This can be achieved using SQL Server's TOP keyword or OFFSET FETCH clause. ParameterDetailsTOPLimiting keyword. Use with a number.PERCENTPercentage keyword. Comes after TOP and limiting ...

Page 1 of 11