What is metadata?

Showing Answers 1 - 5 of 5 Answers

Aarohi

  • Oct 21st, 2005
 

This is the Data Information that a Resultset has fetched.

For Example I had a resultset containig all the records from a table of 3 columns say CA,CB, CC.

Metadata will all the underlined info about the table and the columns that has been fetched.

  Was this answer useful?  Yes

Kalyankumar

  • Oct 21st, 2005
 

Hi ,

What is ResultSet Meta Data.

-Kalyan.

  Was this answer useful?  Yes

Ranjith

  • Oct 22nd, 2005
 

Basically, Metadata is data about data.

In context of JDBC, there may be two types of metadata.

1. Describing information about the Resultset object. i.e, if u have applied a query that fetches some result. this metadata describes information about how many columns have been fetched, their names etc.

2. Second One describes about the database connection

  Was this answer useful?  Yes

Mamatha

  • Oct 23rd, 2005
 

Meta Data- is information that describes about structure and properties of our data. When we define a table we specify each columns name, type of data it holds and restrictions imposed (Constraints) and who owns it. This Information in JDBC Context is called MetaData.In JDBC we have two types of Meta Data(i) ResultSet MetaData(ii) DataBase MetaData(i) ResultSet MetaData is information about data contained in ResultSet(ii) DataBase MetaData is Data about Data

pavani

  • Nov 14th, 2005
 

A single application can have one or more connections with a single database, or it can have connections with many different databases.A user can get information about a Connection object's database by invoking the Connection.getMetaData method. This method returns a DatabaseMetaData object that contains information about the database's tables, the SQL grammar it supports, its stored procedures, the capabilities of this connection, and so on.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions