Fendadis John has Published 81 Articles

How to check edit text values are Anagram or Not and Count Occurrences of Anagrams in android?

Fendadis John

Fendadis John

Updated on 26-Jun-2020 12:44:06

70 Views

This example demonstrate about How to check edit text values are Anagram or Not and Count Occurrences of Anagrams in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the ... Read More

How to valid textview data is only digits in android?

Fendadis John

Fendadis John

Updated on 26-Jun-2020 12:43:30

107 Views

This example demonstrate about How to valid textview data is only digits in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     ... Read More

How to print application base apk path in android?

Fendadis John

Fendadis John

Updated on 26-Jun-2020 12:40:23

420 Views

This example demonstrate about How to print application base apk path in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In ... Read More

How to get longitude from Network provider in android?

Fendadis John

Fendadis John

Updated on 26-Jun-2020 12:20:09

94 Views

This example demonstrate about How to get longitude from Network provider in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In ... Read More

What should be done with the left/ right edges of the content on overflow with JavaScript?

Fendadis John

Fendadis John

Updated on 23-Jun-2020 13:34:35

34 Views

If the content overflows, the workaround with overflowX property to solve the left/ right edge issues and set a scroll. Adding a scroll allows visitors to easily read the entire content.ExampleYou can try to run the following code to learn what is to be done with the left/ right edges ... Read More

How to set the list-item marker type with JavaScript?

Fendadis John

Fendadis John

Updated on 23-Jun-2020 13:18:44

293 Views

To set the type of the list-item marker type, use the listStyleType property. The marker type can be square, circle, dic, etc.ExampleYou can try to run the following code to set the list-item marker type with JavaScript −Live Demo                   ... Read More

How to set the style of the rule between columns with JavaScript?

Fendadis John

Fendadis John

Updated on 23-Jun-2020 12:19:00

59 Views

Use the columnRuleStyle property to set the style of the rule. You can try to run the following code to set the style of the rule between columns with JavaScript −ExampleLive Demo                    #myID {           ... Read More

How MySQL stored GENERATED COLUMNS are different from MySQL virtual GENERATED COLUMNS?

Fendadis John

Fendadis John

Updated on 22-Jun-2020 14:27:03

503 Views

Followings are some basic differences between MySQL stored GENERATED COLUMNS and MySQL virtual GENERATED COLUMNS −In terms of Disk SpaceIf we see the difference in terms of disk space then virtual generated columns would not take any disk space. On the other hand, the stored generated column would take disk ... Read More

How VIEWS can be used to emulate CHECK CONSTRAINT?

Fendadis John

Fendadis John

Updated on 22-Jun-2020 14:16:24

52 Views

As we know that MySQL supports foreign key for referential integrity but it does not support CHECK constraint. But we can emulate them by using triggers. It can be illustrated with the help of an example given below −ExampleSuppose we have a table named ‘car1’ which can have the fix ... Read More

What are the advantages, disadvantages and restrictions of using MySQL triggers?

Fendadis John

Fendadis John

Updated on 22-Jun-2020 11:50:53

4K+ Views

We must have to understand the advantages, disadvantages, and restrictions of using MySQL triggers so that we can use it effectively.AdvantagesFollowings are the advantages of using MySQL triggers −Integrity of data − With the help of MySQL trigger we can check the integrity of data in the table. In other words, ... Read More

Advertisements