Skip to main content

Posts

Showing posts from August, 2017
How to Install MySQL on Ubuntu 14.04 1. check your hostname hostname or hostname -f 2. Update your System sudo apt-get update then sudo apt-get upgrade 3.Install Mysql sudo apt-get install mysql-server then enter password for root as an root  or anything else. see......done.... 4.For secure installation sudo mysql_secure_installation   5.Root login mysql -u root -p     6.Exit.    
What is IIOT?   IIOT is a large part of internet of things. Abbreviation for Industrial Internet of Things; A network of detailed information about industrial physical objects connected with web-based data processing technology. What is it and How Will it Affect Manufacturing? The IIoT is part of a larger concept known as the Internet of Things (IoT). The IoT is a network of intelligent computers, devices, and objects that collect and share huge amounts of data. The collected data is sent to a central Cloud-based service where it is aggregated with other data and then shared with end users in a helpful way. The IoT will increase automation in homes, schools, stores, and in many industries. What are the Benefits of IIoT? The IIoT can greatly improve connectivity, efficiency, scalability, time savings, and cost savings f
Steps to use oracle10g: 1.Install oracle10g/11g 2.Click on windows start symbol  type 'sql' -----then select "Run SQL Command Line" 3.then type 'conn' 4.enter username and pasword which u set at installation time.eg unm='system'  psw='system'. 5.u cannot create database here  //u r already in mysql db 6. now create tables 7.quit // Oracle 10g is Oracle's grid computing product group including (among other things) a database management system (DBMS) and an application server. thank you....................... 
This blog explains how to connect to the Oracle10g database in Java. (u can use netbeans as well then no need of classpath) Connect To Oracle10g database In Java There are 5 steps to create a connection with an Oracle10g database in Java. First register the driver class Create the connection Create a statement Execute queries Close the connection 1. First, register the driver class The class.forName() method of the class registers the driver class.  Syntax public static void forName(String classname) throws ClassNotFoundException Example Class.forName("oracle.jdbc. driver.OracleDriver"); 2. Create the connection object The getConnection() method of the DriverManager class establishes the connection with the Oracle database. Syntax public static Connection getConnection(String url) throws Exception public static Connection getConnetion(String name, String url, String password) Example Connection connection=DriverManager. getConnectio