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 the benefit of having jdbcrowset implementation?
How to test jdbc connection to sql server?
I have getting problem to calling stored procedure from Mysql through JSP. Please help me.
What is the difference between ojdbc6 and ojdbc7?
What is jdbc? Describe the steps needed to execute a sql query using jdbc.
How to achieve JDBC Connection Pooling using JDBC DataSource and JNDI in Apache Tomcat Server?
What is Type-1 Driver and when this driver is used?
What is jdbc type?
What does the connection object represents?
what is connection pooling?
What is JDBC API and when do we use it?
If you are given a choice to implement the code to either insert a record or update if already exist, which approach will you follow ?