GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  J2EE  >  JDBC

 Print  |  
Question:  What is metadata?



November 11, 2005 02:17:03 #5
 pavani   Member Since: Visitor    Total Comments: N/A 

RE: What is metadata?
 
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.
     

 

Back To Question