Avoid Java Code in JSP Page

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

285 Views

You can use JSTL, JSP Standard Tag Library or EL, Expression Language to avoid scriptlets.

String Constant Pool in Java

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

879 Views

When you store a String asString str1 = "Hello";directly, then JVM creates a String object with the given value in a separate block of memory known as String constant pool.And whenever we try to create another String asString str2 = "Hello";JVM verifies whether any String object with the same value exists in the String constant pool, if so, instead of creating a new object JVM assigns the reference of the existing object to the new variable.And when we store String asString str = new String("Hello");using the new keyword, a new object with the given value is created irrespective of the ... Read More

Default Location for Installation of SAP HANA Studio

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:21

708 Views

You can install SAP HANA studio on Linux platform without Root user. In Windows platform, you can perform the installation without administration rights but it will be available only to the user who has installed it.Default Location on Window Platform: C:\Program Files\sap\hdbstudioDefault installation Location under MAC OS: /Applications/sap/hdbstudio (old) or  /Applications/sap/hdbstudio.app (new)Default installation Linux x86 64 bit: /usr/sap/hdbstudio

Check Default MySQL CHAR Function Returns Binary String

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

128 Views

With the help of CHARSET() function, we can check which string is returned by MySQL CHAR() function. Following result set will demonstrate it − mysql> Select CHARSET(CHAR(85)); +-------------------+ | CHARSET(CHAR(85)) | +-------------------+ | binary | +-------------------+ 1 row in set (0.00 sec)

Native Keyword in Java

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

670 Views

The native keyword is used to declare a method as native. It means that method implementation is present in the different language.

Immutable String in Java

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

775 Views

In Java immutable objects are those whose data can’t be changed or modified (once modified). String class is immutable i.e. once we create a String object its data cannot be modified.

Create User Accounts in MySQL Database Server

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

316 Views

As we know that, MySQL database server is having the user table in MySQL database which is used to store the user accounts so by using MySQL database we can create user accounts in MySQL database server. There must be two things while creating the new user account, one is the username and other is the hostname which is after @ character. The syntax for creating the user account is as follows − Syntax Use mysql; CREATE USER user_account IDENTIFIED BY password; Here user_account is the name of the user we wish to take account of. It can ... Read More

Set All Border-Left Properties in One Declaration with JavaScript

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

118 Views

To set all the border left properties in a single declaration, use the borderLeft property. You can try to run the following code to learn how to set the border left properties − Example Live Demo #box { border: thick solid gray; width: 300px; height: 200px } Demo Text Change left border function display() { document.getElementById("box").style.borderLeft = "thick solid #000000"; }

Delete All Rows from a MySQL Table

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

1K+ Views

We can use either TRUNCATE statement or DROP statement to delete all the rows from the table. It can also be done with the help of DELETE statement but in that case WHERE clause must identify all the rows of the table. As we know that both TRUNCATE and DELETE statement will not delete the structure of the table but still it is better to use TRUNCATE statement rather than DELETE statement. DROP statement will delete table’s structure also. Syntax TRUNCATE statement TRUNCATE table table_name: Syntax DROP statement DROP table table_name:

History of C++ Language

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

3K+ Views

The C++ programming language has a history going back to 1979, when Bjarne Stroustrup was doing work for his Ph.D. thesis. He began work on "C with Classes", which as the name implies was meant to be a superset of the C language. His goal was to add object-oriented programming into the C language, which was and still is a language well-respected for its portability without sacrificing speed or low-level functionality.His language included classes, basic inheritance, inlining, default function arguments, and strong type checking in addition to all the features of the C language. The first C with Classes compiler ... Read More

Advertisements