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

How can you make a connection?

0 Answers  


How to get a whole row of data at once?

2 Answers  


Explain the life cycle of jdbc.

0 Answers  


what exactly happens when we execute "Class.forname("Driver class name");"?Explain indetail

10 Answers   Accenture, HP, IBM, Infosys, SAP Labs, SAS, Sasken, Trigent, Wipro,


What are the three basic components of the odbc architecture?

0 Answers  






Explain how to make updates to the updatable resultsets.

0 Answers  


What is jdbc connection interface?

0 Answers  


What are jdbc and its components?

0 Answers  


how do we get the connection from connection pool

1 Answers  


What is jdbc vs odbc?

0 Answers  


What is jdbc thin client in oracle?

0 Answers  


What is the reason why we need a jdbcrowset like the wrapper around resultset?

0 Answers  


Categories