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 template?

0 Answers  


How can I retrieve a String or other object type without creating a new object each time?

0 Answers  


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

1 Answers  


How do I connect to jdbc?

0 Answers  


Is jdbc faster than hibernate?

0 Answers  


How we say that PreparedStatment is Precompiled? where it will be compiled?

4 Answers   Logica CMG,


What is the limitation of PreparedStatement and how to overcome it?

0 Answers  


How many ways that we can view a result set?

0 Answers  


How java can be connected to a database?

0 Answers  


Describe odbc?

0 Answers  


What is connection pooling? What Method and class used for Connection pooling in Java?

2 Answers  


What is namedparameterjdbctemplate?

0 Answers  


Categories