MySQL Database connection in Java using Eclipse || Login page Example || English

Sdílet
Vložit
  • čas přidán 24. 01. 2018
  • Check out this article if you have still doubt. you can copy-paste code as well
    download mysql-connector.jar file
    goo.gl/ftjWmK
    if this video really helped you then you can help me out by Donatation me on PayPal paypal.me/Tarique1
    For connecting java application with the mysql database, you need to follow 5 steps to perform database connectivity.
    In this example we are using MySql as the database. So we need to know following informations for the mysql database:
    Driver class: The driver class for the mysql database is com.mysql.jdbc.Driver.
    Connection URL: The connection URL for the mysql database is jdbc:mysql://localhost:3306/test where jdbc is the API, mysql is the database, localhost is the server name on which mysql is running, we may also use IP address, 3306 is the port number and test is the database name. We may use any database, in such case, you need to replace the test with your database name.
    Username: The default username for the mysql database is root.
    Password: The default password for the mysql database is ""(blank).Password is given by the user at the time of installing the mysql database. In this example, we are going to use "" as the password.
    Let's first create a table in the mysql database, but before creating table, we need to create database first.
    create database test;
    use test;
    create table tblogin(UserName varchar(10),Password varchar(40));
    -----------------------------------
    The above example will fetch all the records of tblogin table.
    To connect java application with the mysql database mysqlconnector.jar file is required to be loaded.
    download the jar file mysql-connector.jar
    Two ways to load the jar file:
    paste the mysqlconnector.jar file in jre/lib/ext folder
    set classpath
    1) paste the mysqlconnector.jar file in JRE/lib/ext folder:
    Download the mysqlconnector.jar file. Go to jre/lib/ext folder and paste the jar file here.
    2) set classpath:
    There are two ways to set the classpath:
    temporary
    permanent
    How to set the temporary classpath
    open command prompt and write:
    C: set classpath=c:\folder\mysql-connector-java-5.0.8-bin.jar;.;
    How to set the permanent classpath
    Go to environment variable then click on new tab. In variable name write classpath and in variable value paste the path to the mysqlconnector.jar file by appending mysqlconnector.jar;.; as C:\folder\mysql-connector-java-5.0.8-bin.jar;.;
    ~-~~-~~~-~~-~
    Please watch: "MySQL Database connection in java 12 using eclipse 2019"
    • MySQL Database connect...
    ~-~~-~~~-~~-~

Komentáře • 270

  • @khushalijiyani6397
    @khushalijiyani6397 Před 4 lety +4

    So easy and clear to understand. Loved it. Thanks 😊

  • @abdishakur9
    @abdishakur9 Před 5 lety +3

    You a genius my brother

  • @traveller4043
    @traveller4043 Před 4 lety +6

    It was a great tutorial . Before JDBC was like hell.

  • @sbouribilel2772
    @sbouribilel2772 Před 5 lety +1

    I'm so grateful men
    keep up

  • @sanjai9961
    @sanjai9961 Před 3 lety +2

    Thank you for this video what I searched is exactly here

  • @souvikroy7384
    @souvikroy7384 Před 5 lety +4

    i love you work ...thank you ....you dont know what satisfaction ou gave me before durga puja holidays

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      Thanku so much.. please share my video so that i can reach to more users

  • @notevencloseml
    @notevencloseml Před rokem

    Very helpful and great tutorial ☺️thanks!!

  • @bennychong1271
    @bennychong1271 Před 5 lety +1

    Nice, you make the whole things easier

  • @carvelbell181
    @carvelbell181 Před 6 lety +4

    This is a very good tutorial. I like the way you explained things, very easy to understand. I am grateful for this video, excellent, and keep up the good work.

  • @felipe6672
    @felipe6672 Před 5 lety

    Excelente me ha ayudado mucho

  • @anjanajoseph1941
    @anjanajoseph1941 Před 5 lety +2

    Thankyou.. it was awesome .. understands really well

  • @khinhninmaw9913
    @khinhninmaw9913 Před 6 lety +2

    thank you for sharing knowledge sir!

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 6 lety

      Most welcome.. If you have any suggestions u can suggest me..
      And also don't forget to share my video..

  • @sanjayanuwan42
    @sanjayanuwan42 Před 2 lety

    thanks a lot. you give me a new life

  • @nizamachmady1682
    @nizamachmady1682 Před 5 lety +1

    Thanks so much bro

  • @dvaVivy
    @dvaVivy Před 5 lety

    Nicely done! ^^

  • @rajasaha1997
    @rajasaha1997 Před 5 lety +1

    Thanks bro.......

  • @fabiocuartas7225
    @fabiocuartas7225 Před 3 lety +1

    remember to always close the Statement and the ResultSet as well

  • @crazy_tolstoy
    @crazy_tolstoy Před 3 lety +1

    Great video! Can you make video how to write some result of query into the textbox, or atleast post picture of code in comment? Thanks in advance :D

  • @t2kumarashutosh2011
    @t2kumarashutosh2011 Před 5 lety +1

    Owsm vdo...helpful..ty boss

  • @feuerwindsfh6478
    @feuerwindsfh6478 Před 5 lety +1

    THANK YOU

  • @minwun
    @minwun Před 4 lety

    much thanks it worked

  • @nazlimehrazar8234
    @nazlimehrazar8234 Před 4 lety +1

    Thank you so much

  • @CallMe_Kurapika
    @CallMe_Kurapika Před 2 měsíci

    ty my bruda

  • @NaveenKumar-zp4sy
    @NaveenKumar-zp4sy Před 4 lety +1

    Nice one...

  • @nazlimehrazar8234
    @nazlimehrazar8234 Před 4 lety

    You're the best

  • @nilesh9686
    @nilesh9686 Před 2 lety +1

    This is very important when you are explaining downloaded java project in interview😂😂😂😂

  • @meghamakhija6293
    @meghamakhija6293 Před 4 lety

    What should i do because there is no ext folder in my C:/programfiles/java/jdk 11.0.6/lib ??? Then where should i paste the mysql connector jar file???

  • @prathamkorade4618
    @prathamkorade4618 Před rokem +2

    the mysql-connector.jar file is not showing in jre system lbrary

  • @SouravSingh-hu7ff
    @SouravSingh-hu7ff Před 4 lety +3

    i downloaded the jar file and pasted it in the place as show in the video. but the jar file is not visible in the jre system library. So i added the jar file with the help of build path->add external archieve. but it is showing error at
    String sql="select * from tblogin where Username='"+user.getText()+"' and Password='"+pass.getText().toString()"'";

  • @hirenprajapati4840
    @hirenprajapati4840 Před 3 lety

    i export as runnable jar file but there were not showing JOptionPane onclick login . I am using jre1.8.0_271 and jdk-15.0.1

  • @vuongqtvn
    @vuongqtvn Před 4 lety

    thank you so much

  • @LeviForWaifu
    @LeviForWaifu Před 5 lety +2

    A lit tutorial but the audio echo made me laugh

  • @pksharma6477
    @pksharma6477 Před 6 lety

    very helpful sir

  • @wolontong
    @wolontong Před 2 lety

    where did you get that jar file, lebowski?

  • @tanvigharte8823
    @tanvigharte8823 Před 3 lety +1

    Sir, I m getting incorrect username and password message dialogye everytime even I m putting the correct username and password . Why should I do ?

  • @hanssama3801
    @hanssama3801 Před 4 lety

    how can u cross out getText() 8:15 which buttons do i need to click? Never did this and dont even know what i will do but well, how to do it?

  • @CleoxiNhA
    @CleoxiNhA Před 5 lety +1

    When I was creating JFrame (2:36) I got a big red X and the error beside it "Failed to create the part's controls". And when I clicked on details to see the error I got "java.lang.NullPointerException". What would it be?

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      You should have WindowsBuilder plugin in eclipse then it will work..

  • @johnybravo4054
    @johnybravo4054 Před 5 lety +1

    thanks it works

  • @ranomtech6463
    @ranomtech6463 Před 3 lety +3

    I don't Know If any one of you will get an error that com.mysql.jdbc.Driver is Deprecated. But If you do, then just replace com.mysql.jdbc.Driver with com.mysql.cj.jdbc.Driver. I use InteliJ IDEA and I got this Error. Hope this helps you.

  • @eonerizuwan
    @eonerizuwan Před 5 lety +1

    What is the music used here?

  • @divyaanthal5208
    @divyaanthal5208 Před 3 lety

    thank u sir

  • @sapnachaudhary5967
    @sapnachaudhary5967 Před 4 lety +2

    At 4:27 when i click on Run it throws an error "Exception in thread "main" java.lang.Error: Unresolved compilation problem:
    Cannot instantiate the type Runnable" . can you please help me in this.

  • @nehalbaig7875
    @nehalbaig7875 Před 6 lety +1

    I hope you will upload videos related to JavaFX and sql

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 6 lety

      Very soon.

    • @nehalbaig7875
      @nehalbaig7875 Před 6 lety +1

      i have been trying for 3 days , will you please help me , that which Sql and Sqlite workbench is easy to use?

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 6 lety

      Yes I m here to help u but in return I need ur support, subscribe my channel share and like my videos...

    • @nehalbaig7875
      @nehalbaig7875 Před 6 lety

      i have already done sir. Allah bless you too sir.

    • @nehalbaig7875
      @nehalbaig7875 Před 6 lety +1

      whenever i learn anything from the channel and its helpful, i try to hit a like button and subscribe too.

  • @mingxuanng9007
    @mingxuanng9007 Před 4 lety +1

    Hi there. Thanks for creating this! I am currently using Eclipse for Enterprise and I can't seem to find the 'Windows Palette' tab. Is there any way which I can find it? Also, I would like users to login and be able to see a list of PDF files that is unique to their Username. Is that possible?
    Do I have to set up the database myself so that it extracts the right PDF files for each user using the app? Appreciate your assistance!

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 4 lety

      First you have to install plugin windowBuilder to get the window palette tab inside eclipse
      And for PDF that is also possible and there are many way to do the same thing.. you can create a table for mapping and you can store pdf in db as well as in folder

    • @mingxuanng9007
      @mingxuanng9007 Před 4 lety

      @@TechnicalBabaji1 Thanks for responding :) I guess I will have to create my own database to store the PDF files and then extract out the relevant ones according to each Username? Is that right? I keep getting this error message:
      "Access denied for user 'root'@'localhost' (using password: NO)" --> how can I solve this?

  • @imrana1719
    @imrana1719 Před 2 lety

    i'm using jdk is that jar file applicable for me?

  • @ruksarsayyed911
    @ruksarsayyed911 Před 6 lety +1

    hey i have eclipse oxygen .3a so i cant find jframe file by right clicking the src folder and the .jar file cant be added in the libraries folder is it because of the ver change .

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 6 lety

      You can't find even in Oxygen 2 that is a pluging you have to add in the eclipse

    • @ruksarsayyed911
      @ruksarsayyed911 Před 6 lety

      Technical Babaji I dnt have the version of oxygen. 2
      And i just followed ur steps but cant find jframe file and cant even load the.jar file

    • @ruksarsayyed911
      @ruksarsayyed911 Před 6 lety +1

      Technical Babaji am using the march 18 eclipse oxygen. 3

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 6 lety

      No problem find the appropriate pluging and install in your eclips.. I have installed plugin in eclipses for designing purpose.. you can also do that go to settings and click on add plugin

    • @ruksarsayyed911
      @ruksarsayyed911 Před 6 lety

      thanks for being so kind helping me...can give tutorials on spring rest api python languages too basic will be fine too ;)

  • @alinaioana670
    @alinaioana670 Před 5 lety +1

    I love you

  • @logavarshan
    @logavarshan Před 4 lety

    Can you tell me what is the name of the song running in background?

  • @mankeshpoonia9682
    @mankeshpoonia9682 Před 5 lety +1

    I pasted my SQL connector in exe but it does not show my SQL jar in jre system library

  • @johnharoldrugay1024
    @johnharoldrugay1024 Před 5 lety +1

    hi, i only have java 1.8.0_144, what should i do?

  • @gireeshpitchuka
    @gireeshpitchuka Před 4 lety +1

    its showing error at
    String sql="select * from tblogin where Username='"+user.getText()+"' and Password='"+pass.getText().toString()"'";
    software is eclicpse juno

  • @patricksemilla4899
    @patricksemilla4899 Před 4 lety +1

    the video was good but the sound are horrible
    Please don't use any auto tune

  • @shubhangiagarwal1714
    @shubhangiagarwal1714 Před 5 lety +2

    Does this work on eclipse neon3??
    becoz i was not able to find jframe

  • @warrenantes7635
    @warrenantes7635 Před 5 lety +1

    do you have a tutorial on connecting mysql to JavaFx??

  • @anitha2053
    @anitha2053 Před 4 lety +2

    How to get design tab in eclipse? Can u please tellme!

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 4 lety +1

      Please add plugin windowBuilder then only you will be able to do that.. Please watch my latest video their I have shown how you can do that..

  • @barsaranisahoo6675
    @barsaranisahoo6675 Před 5 lety +1

    how to create database
    ...pls sir make one video ofthat

    • @unclelizard5580
      @unclelizard5580 Před 5 lety +1

      More specifically, please show how to create one with PHPmyadmin, because I ran into this tutorial assuming I would be learning how to connect to a MySQL database that I created with the command line client.

  • @darkemperor4863
    @darkemperor4863 Před 4 lety +3

    why i follow your step why always appear message incorrect
    while my username and my password is correct
    please give a solution

    • @najlaeddah2266
      @najlaeddah2266 Před 4 lety

      i get the same error on and on , but i found out that it's for the password field only , and i don't know why , please if you figured out why tell me , thanks .

  •  Před 5 lety +4

    I did everything you showed but got "incorrect username or password" even when i typed the correct username and password

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      Here username ans password both are case sensitive

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety +1

      If u have still problem then send me database and code snapshot at tarique.rkl@gmail.com I will check.

    • @chiragpaliwal4961
      @chiragpaliwal4961 Před 2 lety

      did you get the solution if yes please reply

  • @milosvojvodic6263
    @milosvojvodic6263 Před 5 lety +1

    how did you enter the 3 example user names and passwords @5:02 ?

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety +1

      First create a table then insert.. there is two way to insert the data into MySQL database
      1 Insert query
      2 phpmyadmin panel
      First way is used to insert data from application
      Second way is used when you want to insert data directly into database
      For the second way u have to click on insert tab of phpmyadmin then one form will appear through which you can insert data..
      Thank you keep support us..

  • @chandrasekar4179
    @chandrasekar4179 Před 5 lety

    create a video for creating a mysql database

  • @chalino228
    @chalino228 Před 5 lety

    what do I must do if I want go to another Java page ?

  • @VidishArvind
    @VidishArvind Před 5 lety +1

    ar 2:20 i don't have window builder option? what shall i do

  • @rubyboby1084
    @rubyboby1084 Před 3 lety

    How insert a values to use this same techniques...

  • @hareemsheikh7660
    @hareemsheikh7660 Před 5 lety +1

    Ho
    w your data base will come ?? i cant understand it?

  • @nilniluzen7013
    @nilniluzen7013 Před 6 lety +1

    i Saw ur video,but one thing I cannot understand, where you find "user.getText",in ur project you dont declare user as avariable or ,interface

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 6 lety

      user is the Object of EditText field I have shown lady in video watch care fully wait i will tell you the exact minute where I hv shown..

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 6 lety +2

      Watch from 4:10 I have set variable name user

  • @CSEtutorials
    @CSEtutorials Před 6 lety +1

    Waiting for your reply sir...

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 6 lety

      +CSEtutorials i m here

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 3 lety +1

      Dear subscribers,
      We had gone through your comments and lots of requests for promoting your content on our channel. So, we decided to provide you with a great opportunity to promote your own content by collaborating with us. Nothing to worry it's absolutely free of cost! Don't miss this golden chance of collaboration in a channel of 18k subscriber holder! If you're Interested then directly mail here for more details
      pravat.behera45@gmail.com
      Regards
      Technical Babaji
      czcams.com/channels/Kn7xwxBKZ_H1i6nilMsRQg.html

    • @CSEtutorials
      @CSEtutorials Před 3 lety

      @@TechnicalBabaji1 mail done... PlZ check

  • @vaishnavivenkat6947
    @vaishnavivenkat6947 Před 5 lety

    How did u set username and password for that newly created login page

  • @saistachhipa3053
    @saistachhipa3053 Před 5 lety +1

    i got an error com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'abcdand password is abcd' at line
    how can i solve this please reply !!!!!!!!!!!

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      You have done sql syntax error please see the sql syntax or you can share code with me I will tell you where you did the mistake.. Thank you

    • @saistachhipa3053
      @saistachhipa3053 Před 5 lety +1

      @@TechnicalBabaji1 ohk where can I send you the code ?

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      tarique.rkl@gmail.com this is my mail id you can send here

    • @saistachhipa3053
      @saistachhipa3053 Před 5 lety

      @@TechnicalBabaji1 sure I will send the java code .

    • @saistachhipa3053
      @saistachhipa3053 Před 5 lety +1

      @@TechnicalBabaji1 I had send the file please check it out !!

  • @onkardapake802
    @onkardapake802 Před 4 lety +1

    Sir in my eclipse JFrame not found how to add JFrame? Please help

  • @Nikiya_sl
    @Nikiya_sl Před 8 měsíci

    1:11 what is the jre folder? i don't have it

  • @nikhilkumar4892
    @nikhilkumar4892 Před 5 lety

    can you please tell me how can i make a table on phpmyadmin clearly

  • @kushawahapraveen
    @kushawahapraveen Před 4 lety

    Sir how to make a address book by useing java in eclipse

  • @viyyappan5491
    @viyyappan5491 Před měsícem

    I am don't have jre folder....only have JDK folder..... where paste this jar file...bro...

  • @ashishranacs
    @ashishranacs Před 5 lety

    .getText() method doesn't show up in suggestions. only showing .getBytes()

  • @rashmin6560
    @rashmin6560 Před 5 lety +1

    mine is is jdk12
    where should i paste because ext dont exist in lib
    please do respond soon

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety +1

      In jdk 12 you have to import inside ide u can not add directly

    • @rashmin6560
      @rashmin6560 Před 5 lety

      @@TechnicalBabaji1 Thanks alot

  • @roywright8552
    @roywright8552 Před 5 lety

    jdk 11 no longer has a jre folder, where do we put the jar?

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      Yes u are write.. in jdk 11 we have to set path for jar file.. Thanku for asking this question

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      If u are using IDE then u can add by clicking on external library it will work...

  • @themiyalumia1383
    @themiyalumia1383 Před 4 lety

    class.forName not found how to fix this error

  • @mafiq1102
    @mafiq1102 Před 4 lety +1

    where do i paste mysql-connector.jat file if i only have a jdk file?

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 4 lety

      You will not find jre folder from java 10 onwards please watch my latest video.. I have explained there how to do

    • @piusonono1406
      @piusonono1406 Před rokem

      ​@@TechnicalBabaji1 Tell me about this video... I want to watch it....

    • @piusonono1406
      @piusonono1406 Před rokem

      ​@@TechnicalBabaji1 where is the link to the latest video please??

  • @rjlopez2682
    @rjlopez2682 Před 9 měsíci

    how you create tbllogin in testvplease tutorial

  • @bibashpokhrel
    @bibashpokhrel Před 4 lety +1

    How to setup in linux Please help me?

  • @carolineshorts365
    @carolineshorts365 Před 2 lety

    I need help doing this. I’m getting errors

  • @rajd2919
    @rajd2919 Před 5 lety +1

    i dont have jframe....!!!!
    is there anyother options...????

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      You can design JFrame from coding as well watch this video it will really help you czcams.com/users/edit?o=U&video_id=Wga2DHPxvEA

    • @RE-jc7br
      @RE-jc7br Před 5 lety

      i solve ittttttttttttttttttttttt >> go to this link czcams.com/video/oeswfZz4IW0/video.html follow him for install jframe tool , good lock

  • @christianvillanueva723

    hi i dont have JRE what should I do now

  • @ashfakmalek106
    @ashfakmalek106 Před 5 lety +1

    muje ek app banana h
    kyaa aap ek video upload kar sakte h ke jisme app icon kese banaye and user id kese create kare like Name,birthdate....

  • @saichaitanya7277
    @saichaitanya7277 Před rokem

    theme of your browser?

  • @nikhilkumar4892
    @nikhilkumar4892 Před 5 lety

    php my admin site not working????? how to open that site

  • @techxtreme7630
    @techxtreme7630 Před 3 lety

    Type of error = getText cannot be resolved or is not a field......... Pls help how solve this error

  • @JustinTheVlogger
    @JustinTheVlogger Před 4 lety

    You did not explain on how to have a username and password in database.

  • @anukulkumar219
    @anukulkumar219 Před 4 lety +1

    I dont have a jre folder in my JAVA

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 4 lety

      That has been removed from java 10 onwards so please watch watch my latest videos

  • @betosalavaco9964
    @betosalavaco9964 Před 5 lety +1

    I need install a database server? If yes, how I'll make distribution?

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety +1

      Mysql oracle mongodb these are the famous database software... If u want to access database server from remote location then internet connection should be their with public ip private will not work.. and distributed database is a different concept.

    • @betosalavaco9964
      @betosalavaco9964 Před 5 lety +1

      @@TechnicalBabaji1 Yeah, now i can see. I'm looking for Embedded database. I can't understand why the people don't speak about them. You could make a video about them, h2, derby, sqlite... they ar too important. Thank you a lot for you awnser

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      My dear friend.. every database has is its own importance.. we can not compare with each other.. but the concept will be same.. Concept wise only two types of database.. schema less and schema full..
      When we talk about embedded database like sqlite, It is also schema full database. Now a days every android app using their sqlite database so that they can access offline as well.. bdw thank you so much definitely I will make video on these database

    • @betosalavaco9964
      @betosalavaco9964 Před 5 lety

      @@TechnicalBabaji1 Yeah, you're right. Thank you!

    • @betosalavaco9964
      @betosalavaco9964 Před 5 lety +1

      @@TechnicalBabaji1 sorry for my words, my intent was make a sugestion really sorry

  • @sahananayak7933
    @sahananayak7933 Před 5 lety +1

    How to make it full screen??

  • @karim-kc7yo
    @karim-kc7yo Před 5 lety +1

    Class.forName("com.mysql.jdbc.Driver"); not working ??

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      First you have to download this driver.. and paste in jre folder..

    • @karim-kc7yo
      @karim-kc7yo Před 5 lety +1

      thank you , solved :)

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      Woow.. I am happy for u also keep share my vdo and subscribe my channel

  • @nehacs2010
    @nehacs2010 Před 2 lety

    And connection please sir i have project submission on Monday please reply fast sir

  • @alliahmendez322
    @alliahmendez322 Před 2 lety

    When I put in the correct username and password its saying incorrect

  • @utsavghosh95
    @utsavghosh95 Před 5 lety +1

    com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown database '3306/test'
    it is created in phpMyAdmin and my xampp is on.

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      You can see the error is syntax error. So u have to correct your syntax

    • @utsavghosh95
      @utsavghosh95 Před 5 lety

      @@TechnicalBabaji1 There is more to it. I have checked the syntax and it is correct (same as your tutorial) yet I am unable to establish a connection with the database. Please help.

    • @utsavghosh95
      @utsavghosh95 Před 5 lety

      @@TechnicalBabaji1
      SELECT * FROM `tblogin`;
      UserName
      Password
      utsav
      utsgh
      upu
      upugh

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      @@utsavghosh95 send me your connection code in my Gmail tarique.rkl@gmail.com

  • @yasinekanowah
    @yasinekanowah Před 5 lety +1

    What about mac os?

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 5 lety

      Sry man.. I m totally un aware of mac os.. I haven't use mac till now

  • @CSEtutorials
    @CSEtutorials Před 6 lety +1

    Hello. Sir.... I wana to contact u. I m also.... A online tutor for computer science.

    • @TechnicalBabaji1
      @TechnicalBabaji1  Před 3 lety +1

      Dear subscribers,
      We had gone through your comments and lots of requests for promoting your content on our channel. So, we decided to provide you with a great opportunity to promote your own content by collaborating with us. Nothing to worry it's absolutely free of cost! Don't miss this golden chance of collaboration in a channel of 18k subscriber holder! If you're Interested then directly mail here for more details
      pravat.behera45@gmail.com
      Regards
      Technical Babaji
      czcams.com/channels/Kn7xwxBKZ_H1i6nilMsRQg.html

    • @CSEtutorials
      @CSEtutorials Před 3 lety

      @@TechnicalBabaji1 yeah... Check your mail...

  • @nehacs2010
    @nehacs2010 Před 2 lety

    Hi sir please help me to install

  • @binoy0414ify
    @binoy0414ify Před 3 lety

    Bro mute the music,I would like to hear You!

  • @yatheekshakotian6569
    @yatheekshakotian6569 Před 4 lety

    Can i get source code pdf please..