Asynchronous Apex
Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations
Sorting Alphanumeric Data in PHP
While fetching data from database, in SQL query I had ‘order by’ clause but the results were not sorted when the data was in alphanumeric form. The reason for this is that SQL sorts character by character from left to
Why Hadoop and Big Data are getting popular
Surprisingly, over 90% of the data in the world today has been created only in the last couple of years. With the revolution in mobile industry, social media networks, sharing of digital photos and videos online we are continuing to
CakePHP | How to handle special characters (like apostrophes) in queries
Let us take an example: We have table employees with following fields: id int primary key, name varchar(50), city varchar(50) We have following records in the table: (1, isha, amr); (2, Hamlet’s, ghy); (3, éhjj, amr); 2nd and 3rd records
Salesforce | Data Loader Application error about upgrade to TLS 1.1 or Higher
You may receive receive error in Salesforce Data Loader Application about upgrade of TLS 1.1 or Higher. To resolve this issue follow these steps: Step 1: Install latest version of Java. Step 2: Goto setup in Salesforce > type Data
Java Spring | org.springframework.beans.factory.BeanDefinitionStoreException
ERROR : Context namespace element ‘annotation-config’ and its parser class : [org.springframework.context.annotation.AnnotationConfigBeanDefinitionParser] are only available on JDK 1.5 and higher Description : My project is using : server – Tomcat8 java- 1.8 Framework – Spring 2.5 I had added all
Bootstrap | Introduction to Font Awsome icons
Font Awesome is an icon set that contains different scalable vector icons. There are many different types of icons that come with Font Awesome: social media, UI/web-related, and more! Font Awesome gives us flexible vector icons that we can be
Why HTML tables are discouraged and HTML DIVs are promoted?
Sometimes we have a choice to use <table> tag or <div> tag but there are many advantages of using <div> tag over <table> tags. Firstly when browser loads a table it waits for entire table text to reach browser side
Support Plan Content
Support Plans IT support has become important for every business company, no matter what is the size of business. Some companies do not tie up with any IT company for maintaining their IT infrastructure as they feel they can take
MySQL | Unable to create foreign key between two tables
We have two tables say table1 and table 2. In table 1, there is a field named Id and this field is set as primary key in table 1. We want to use it as foreign key in table 2.