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 JDBC DataSource and what are it’s benefits?

0 Answers  


write down exceptions those appear in java programs when u write JDBC Programs?

2 Answers  


What are the advantages of using preparedstatement over statement?

0 Answers  


what are the drawbacks of JDBC? explain briefly?

5 Answers  


How the JDBC application works?

0 Answers  


What is jdbc odbc in java?

0 Answers  


How do I find jdbc version?

0 Answers  


What are the common tasks of JDBC?

0 Answers  


Is possible to open a connection to a database with exclusive mode with JDBC?

0 Answers  


How many isolation levels are supported in JDBC and what are they?

1 Answers  


What is connection commit?

0 Answers  


What are the flow statements of jdbc?

0 Answers  


Categories