Abhinaya has Published 58 Articles

How can we MySQL LOAD DATA INFILE statement with ‘FIELDS TERMINATED BY’ option to import data from text file into MySQL table?

Abhinaya

Abhinaya

Updated on 06-Feb-2020 05:56:50

1K+ Views

‘FIELDS TERMINATED BY’ option should be used when the text file which we want to import into MySQL table is having the values which are separated by a comma(, ) or maybe with any other separator like a colon(:), semicolon(;) etc. It can be understood with the help of the ... Read More

How to load classes at runtime from a folder or Java package

Abhinaya

Abhinaya

Updated on 04-Feb-2020 11:06:03

879 Views

Using CLASSPATH, you can load any classes at runtime.Like the .java source files, the compiled .class files should be in a series of directories that reflect the package name. However, the path to the .class files does not have to be the same as the path to the .java source ... Read More

How can we import data from a text file having names of the columns in first row?

Abhinaya

Abhinaya

Updated on 04-Feb-2020 05:52:05

413 Views

Sometimes, the input text file has the names of the columns in the first row and to import data from such kind of text file to MySQL table we need to use ‘IGNORE ROWS’ option. To illustrate it we are using the following example −ExampleFollowings are the comma separated values ... Read More

Usage of font-weight property in CSS

Abhinaya

Abhinaya

Updated on 30-Jan-2020 10:36:02

76 Views

The font-weight property is used to increase or decrease how bold or light a font appears. The font-weight property provides the functionality to specify how bold a font is. Possible values could be normal, bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900.                   This font is bold.       This font is bolder.       This font is 500 weight.    

Create a small-caps effect for CSS

Abhinaya

Abhinaya

Updated on 30-Jan-2020 09:25:02

501 Views

To create a small-caps effect, use the font-variant property.ExampleYou can try to run the following code to learn how to work with font-variant property in CSS:                            Asia, Antartica, Africa are continents          

Why MySQL uses the interval like 7 day and 2 hour instead of 7 days and 2 hours?

Abhinaya

Abhinaya

Updated on 29-Jan-2020 05:23:20

112 Views

The reason behind this concept is that MySQL requires the unit keywords to be singular, regardless of the English grammar rules. If we will try to supply intervals like 7 days, 2 hours etc then MySQL will produce syntax error as follows −mysql> Select '2017-02-25 05:04:30' + INTERVAL 2 days; ... Read More

What is Bitwise XOR Assignment Operator (^=) in JavaScript?

Abhinaya

Abhinaya

Updated on 08-Jan-2020 07:51:50

296 Views

It performs XOR operation on the right operand with the left operand and assigns the result to the left operand.ExampleYou can try to run the following code to learn how to work with Bitwise XOR Assignment OperatorLive Demo                    var a ... Read More

Using BU, ZK code in SAP Macros

Abhinaya

Abhinaya

Updated on 16-Dec-2019 08:46:53

1K+ Views

OK CODE – In SAP, an OK code is used for any functionality. The OK code is used to perform an action executed or will be executed (save, back, exit) etc. BU – This OK function is used to perform SAVE function in an MM01 transaction.ZK – This code is used ... Read More

Calling SAP Web Service to get data in Flash dashboard

Abhinaya

Abhinaya

Updated on 10-Dec-2019 10:23:22

135 Views

You can also try hosting your Flash application on SAP box. Following approaches can be used:Using Transaction: SICF, you can change the default host’s default service to point to BSP application and then add crossdomain.xml file as MIME.You can also configure ICM to manage this and it sits between the ... Read More

What does the method removeLast() do in java?

Abhinaya

Abhinaya

Updated on 30-Jul-2019 22:30:21

87 Views

The removeLast() method of the java.util.LinkedList class removes and returns the last element of this list.Example:import java.util.*; public class LinkedListDemo {    public static void main(String[] args) {       LinkedList list = new LinkedList();       list.add("Hello");       list.add(2);       list.add("Chocolate");   ... Read More

Advertisements