How the information about db(database) can be retrieved?

Answers were Sorted based on User's Feedback



How the information about db(database) can be retrieved?..

Answer / indrani

using databasemetadata,we can get the data related to
database

Is This Answer Correct ?    0 Yes 0 No

How the information about db(database) can be retrieved?..

Answer / sushant deepak

sp_helpdb databasename

Is This Answer Correct ?    1 Yes 1 No

How the information about db(database) can be retrieved?..

Answer / sushant

Database=MySQLdb.connect(db = Database, user =
DatabaseUser, passwd =
DatabasePassword, host = localhost)
DatabaseCursor = Database.cursor()
DatabaseCursor.execute("SELECT * FROM table1 ORDER BY
field1")
RecordData = DatabaseCursor.fetchone()

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JDBC Interview Questions

What is the meaning of batch updates?

0 Answers  


What are temp tables ?

0 Answers  


Why do I have to reaccess the database for Array, Blob, and Clob data?

0 Answers  


State the three different ways in which you can create a table?

0 Answers  


What is jdbc architecture?

0 Answers  






Name the new features added in jdbc 4.0.

0 Answers  


What is jdbc databasemetadata interface?

0 Answers  


What is difference between odbc and jdbc?

0 Answers  


What is the benefit of having jdbcrowset implementation? Why do we need a jdbcrowset like wrapper around resultset?

0 Answers  


How do I set properties for a JDBC driver and where are the properties stored?

0 Answers  


Explain the locking system in jdbc & its types?

0 Answers  


What are the exceptions in jdbc?

0 Answers  


Categories