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 is JDBC DataSource and what are it’s benefits?
write down exceptions those appear in java programs when u write JDBC Programs?
What are the advantages of using preparedstatement over statement?
what are the drawbacks of JDBC? explain briefly?
How the JDBC application works?
What is jdbc odbc in java?
How do I find jdbc version?
What are the common tasks of JDBC?
Is possible to open a connection to a database with exclusive mode with JDBC?
How many isolation levels are supported in JDBC and what are they?
What is connection commit?
What are the flow statements of jdbc?