Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

/* Write a jadbc program in java to display theb names of employees strting wit

h " S" character .*/


import java.sql.*;
class slip21
{
public static void main(String args[])
{
Connection con;
try
{
Class.forName("com.mysql.jdbc.Driver");
con=DriverManager.getConnection("jdbc:mysql://localhost/3306/emp","root","r
oot");
if(con==null)
{
System.out.print("connection failed");
}
System.out.print("Connection success");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("select * from employee where ename like '%s'
");

You might also like