Krantik Chavan has Published 278 Articles

What is the difference between BLOB and CLOB datatypes?

Krantik Chavan

Krantik Chavan

Updated on 07-Jun-2020 07:10:46

15K+ Views

Blob and Clob together are known as LOB(Large Object Type). The following are the major differences between Blob and Clob data types.BlobClobThe full form of Blob is a Binary Large Object.The full form of Clob is Character Large Object.This is used to store large binary data.This is used to store ... Read More

How to specify whether the content of an element should be translated or not in HTML?

Krantik Chavan

Krantik Chavan

Updated on 01-Jun-2020 09:25:06

144 Views

The translate attribute is useful to set that the content of an element is to be translated or not.The following are the attributes −AttributeValueDescriptionYesThe content should be translated.NoThe content should not be translated.If you did not want a specific word to be translated, then add it to the translate attribute ... Read More

In HTML how to create table header?

Krantik Chavan

Krantik Chavan

Updated on 27-May-2020 22:28:51

558 Views

Use the tag in HTML to create table header. The HTML tag is used in adding a header to a table. The thead tag is used in conjunction with the tbody tag and the tfoot tag in determining each part of the table (header, footer, body).The HTML ... Read More

What is the role of pageX Mouse Event in JavaScript?

Krantik Chavan

Krantik Chavan

Updated on 23-May-2020 09:33:19

357 Views

When a mouse event is triggered, the pageX mouse event property is used to get the horizontal coordinate of the mouse pointer. The coordinate is relative to the screen.ExampleYou can try to run the following code to learn how to implement pageX Mouse event in JavaScript.         ... Read More

How to call a stored procedure using callable statement in JDBC explain?

Krantik Chavan

Krantik Chavan

Updated on 09-Mar-2020 06:37:08

4K+ Views

You can call the SQL stored procedures using the CallableStatement interface. A Callable statement can have input parameters, output parameters, or both.You can create an object of the CallableStatement (interface) using the prepareCall() method of the Connection interface. This method accepts a string variable representing a query to call the ... Read More

What are stored procedures? How to call stored procedures using JDBC program?

Krantik Chavan

Krantik Chavan

Updated on 09-Mar-2020 06:32:51

555 Views

Stored procedures are sub routines, segment of SQL statements which are stored in SQL catalog. All the applications that can access Relational databases (Java, Python, PHP etc.), can access these procedures.Stored procedures contain IN and OUT parameters, or both. They may return result sets in case you use SELECT statements, ... Read More

Execute a script when the media has paused but is expected to resume in HTML?

Krantik Chavan

Krantik Chavan

Updated on 03-Mar-2020 07:40:21

125 Views

The onwaiting attribute triggers when a video pause and buffers to reume again. You can try to run the following code to implement the onwaiting attribute −Example           Play                                    Your browser does not support the video element.                      function myFunction() {             document.getElementById("test").innerHTML = "Media resumes again";          }          

Different types of operators in C++

Krantik Chavan

Krantik Chavan

Updated on 26-Feb-2020 12:33:01

481 Views

There are many types of operators in C++. These can be broadly categorized as: arithmetic, relational, logical, bitwise, assignment and other operators.Arithmetic OperatorsAssume variable A holds 10 and variable B holds 20, then −OperatorDescription       +        Adds two operands. A + B will give 30-Subtracts second ... Read More

Which is the best book for Java interview preparation

Krantik Chavan

Krantik Chavan

Updated on 25-Feb-2020 05:29:24

174 Views

Following books are on top from popularity and content wise and are a good resource to learn java programming from beginner to advance level.

How can we write MySQL handler, in a stored procedure, that sets the particular value of a variable and continues the execution?

Krantik Chavan

Krantik Chavan

Updated on 12-Feb-2020 08:02:43

229 Views

As we know that whenever an exception occurred in MySQL stored procedure, it is very important to handle it by throwing proper error message because if we do not handle the exception, there would be a chance to fail application with that certain exception in a stored procedure. MySQL provides ... Read More

Previous 1 ... 7 8 9 10 11 ... 28 Next
Advertisements