Data Sources (ODBC)
MySQL Connector/ODBC 5.1 Go to http://dev.mysql.com/downloads/connector/odbc/5.1.html and download the latest driver. I downloaded: mysql-connector-odbc-5.1.6-win32.msi (4.33 mb) Register an ODBC […]
Read More →MySQL Connector/ODBC 5.1 Go to http://dev.mysql.com/downloads/connector/odbc/5.1.html and download the latest driver. I downloaded: mysql-connector-odbc-5.1.6-win32.msi (4.33 mb) Register an ODBC […]
Read More →SQL data type Java data type VARCHAR, LONGVVARCHAR String BIT boolean TINYBIT byte SMALLINT short INTERGER int BIGINT long […]
Read More →GRANT ALL ON employees.* TO manish@localhost IDENTIFIED BY "eagle" The above command grants account (manish@localhost) all the permissions on […]
Read More →How to create a forward-only read-only result set: Statement statement = connection.createStatement(); ResultSet rs = statement.executeQuery("SELECT * FROM PRODUCTS"); […]
Read More →Methods of a ResultSet object that work with a result set Methods Description beforeFirst() Moves the cursor to the […]
Read More →How to use the getMetaData method to create a ResultSetMeataData object: Method Description getColumnCount() Returns the number of columns […]
Read More →Attached is a sample program to Select data from MySQL using the Muchach's DB. Here is the sample code: […]
Read More →Attached is a sample program to Delete data from MySQL using the Muchach's DB. Here is the sample code: […]
Read More →Attached is a sample program to Update data in MySQL using the Muchach's DB. Here is the sample code: […]
Read More →Attached is a sample program to Insert data into MySQL using the Muchach's DB. Here is the sample code: […]
Read More →