what is metadata and it's use?

Answers were Sorted based on User's Feedback



what is metadata and it's use?..

Answer / anand

Meta data nothing but data about date.

For example,

22 - marks
Raju - name
96 - age
Hyd - address

In the above example we can say that marks,name,age and address called Meta data, because that data gives detail information about actual data.

<marks>22</marks>
<name>Raju</name>
<age>96</age>
<address>Hyd</address>

Tn the above one we can say that the tags like <marks>,<name>,<age>,<address> are called meta tags, because that tags gives details information about actual data.

In java we have two types of metadata.
i) ResultSetMetaData
ii) DatabaseMetaData

ResultSetMetaData is used to know the details of ResultSet object like no.of columns,names of the columns and datatypes of the column etc.

DatabaseMetaData is used to know the information about database server like version of the database server,name of the database server etc.

Is This Answer Correct ?    3 Yes 0 No

what is metadata and it's use?..

Answer / sowmya

metadata is nothing but data about data.
This data includes column-type,constraint-type etc.
It describes the whole structure of table data

Is This Answer Correct ?    2 Yes 0 No

what is metadata and it's use?..

Answer / harish

u can access information abt the database as a whole or abt
a particular query ResultSet.This section describes how
DatabaseMetaData and ResultSetMetaData objects are obtained
and queried.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JDBC Interview Questions

Explain the JDBC Architecture?

0 Answers  


what is connection pooling?

6 Answers   Wipro,


How many types of JDBC drivers are there and what are they?

2 Answers   TCS,


What are the sailent features of JDBC 2.0?

7 Answers  


What is the meaning of “dirty read” in the database?

0 Answers  






What is the difference between jdbc and odbc?

0 Answers  


Does sql allow null values ?

0 Answers  


Why can't I invoke the ResultSet methods afterLast and beforeFirst when the method next works?

0 Answers  


When you will get error like ?No suitable driver??

2 Answers  


What is the meaning of batch updates?

0 Answers  


What is Connection Pooling ??? How we set up a particular connection within connection pooling ????

2 Answers   Cognizant,


What should be done for auto generating primary key id in a table ?

0 Answers  


Categories