How the information about db(database) can be retrieved?
Answers were Sorted based on User's Feedback
Answer / indrani
using databasemetadata,we can get the data related to
database
| Is This Answer Correct ? | 0 Yes | 0 No |
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 |
What does the jdbc databasemetadata interface?
Which jdbc driver type s is are the jdbc odbc bridge?
Why resultset is used in java?
What is the use of JDBC DriverManager class?
why we don't use the type 2 driver for connect to the database in jdbc?
Is jdbc open source?
Explain the difference between rowset vs. Resultset in jdbc?
What is jdbc in dbms?
Name the types of jdbc drivers.
What is connection data?
What is two-phase commit in the database?
Is jdbc and orm?