Это видео недоступно.
Сожалеем об этом.

How to install MySQL and connect with Java (JDBC) in VSCODE | JDBC Connectivity in Java with MySQL 🚀

Поделиться
HTML-код
  • Опубликовано: 13 авг 2024
  • Hi in this video tutorial, you will learn how to install MySQL server on your computer and will connect with vscode.
    Will also learn how to download and add the MySQL connector jar file to your VS Code classpath then we learn how to create a database and a table using SQL commands and write a Java program that connects to the database using JDBC driver.
    00:00 Intro
    01:12 Why JDBC code is not running?
    01:48 Some Doubts of beginners?
    03:41 How to download MySQL.
    05:16 How to install MySQL.
    13:16 Creating new Java JDBC application in vscode.
    15:43 Why java application is not running?
    16:16 connect MySQL with Java (JDBC) in vscode.
    19:03 Let's Discuss more things about upcoming lecture.
    19:40 If you are not able to download and install perfectly.
    ➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
    🙋🏼‍♂️Hello All Kaise Ho Sare ❓
    Welcome to my RUclips channel Coding Wallah ❤️
    🎦Video Kaise lagi any feedback to improve ❓
    🙏🏼PLEASE COMMENT YOUR VALUABLE FEEDBACK 💬
    𝙈𝙤𝙧𝙚 𝘾𝙤𝙣𝙩𝙚𝙣𝙩
    📚 Java Tutorial for Beginners in Hindi = 🔎 • Java Tutorial for Begi...
    🌟 Star Patterns in Java =🔎 • Star Pattern Programs ...
    👨‍💻 Java Full Stack Developer Series = 🔎 • JAVA Developer Series ...
    📖 OOPs in Java =🔎 • OOPs Concepts in Java ...
    👨‍💻 Exception Handling in java = 🔎 • Exception Handling in ...
    ❤️ 10 Min Tutorials = 🔎 • Explain in 10 Mins 🔥
    🔥 DSA Old Playlist = 🔎 • DSA + Mostly Asked Int...
    🚀 Personal Tips + Roadmaps = 🔎 • Guidance - By Coding W...
    W𝙖𝙣𝙩𝙨 𝙩𝙤 𝙨𝙪𝙥𝙥𝙤𝙧𝙩 𝙢𝙚 💖
    𝐏𝐫𝐚𝐲𝐞𝐫s = 1 𝑳𝑰𝑲𝑬 for my Video
    𝐒𝐮𝐩𝐩𝐨𝐫𝐭 = 𝙎𝙃𝘼𝙍𝙀 with your friends
    𝐅𝐞𝐞𝐝𝐛𝐚𝐜𝐤= U can comment here
    𝐌𝐨𝐭𝐢𝐯𝐚𝐭𝐢𝐨𝐧 = 𝙎𝙐𝘽𝙎𝘾𝙍𝙄𝘽𝙀 𝙎𝙐𝘽𝙎𝘾𝙍𝙄𝘽𝙀
    Social Medial Accounts For Contact and Help 💖
    ❤️Instagram ( Updates )- / codingwallahsir
    📝Telegram ( Notes or Pdf ) - t.me/CodingWallahSir
    🐶Twitter - / codingwallah
    🙋🏼‍♂️Facebook - / codingwallah
    𝙃𝙖𝙨𝙩𝙖𝙜𝙨
    #javaprogramming #javatutorial #codingwallah #learncoding

Комментарии • 318

  • @CodingWallahSir
    @CodingWallahSir  Год назад +18

    // sound kesi h video me ab and ye code aap loog copy kar sakte ho next video me ye sab smja dunga don't worry agar apne meri JDBC in 10 mintues ki video dekhi h tab apko smaj a rha hoga ye code i guess ?
    JDBC in 10 min - ruclips.net/video/MOQfTuOiBys/видео.html
    Eclipse Setup - ruclips.net/video/FbOfNoXrevY/видео.html
    VS code setup - ruclips.net/video/-0X0BHLE0Dg/видео.html
    ----------------------------------------------
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.Statement;
    import javax.swing.JOptionPane;
    public class CreateDB {

    public static void main(String[] args) throws Exception {
    try {
    String url = "jdbc:mysql://localhost:3306/";
    String databaseName = "shivam";
    String userName = "root";
    String password = "BangBang@1234";

    Connection connection = DriverManager.getConnection(url,userName, password);

    String sql = "CREATE DATABASE " + databaseName;

    Statement statement = connection.createStatement();
    statement.executeUpdate(sql);
    statement.close();
    JOptionPane.showMessageDialog(null, databaseName + " Database has been created successfully", "System Message", JOptionPane.INFORMATION_MESSAGE);

    } catch (Exception e) {
    e.printStackTrace();
    }
    }
    }

    • @gayuvtech
      @gayuvtech 5 месяцев назад +1

      Sir MySQL installation ke time MySQL connecter nhi show horha h

    • @mohduzair5607
      @mohduzair5607 6 дней назад

      @@gayuvtech hey do u know how to install connector now ? Coz i am also facing same issue

    • @digitaljay1
      @digitaljay1 2 дня назад

      ​MySQL version 8.0.25 wala download Karo. Thank me later ☺️ ​@@gayuvtech@mohduzair

  • @UtsabPandey-hf9ie
    @UtsabPandey-hf9ie 4 дня назад +1

    Thank you sir, successfully connected it. After trying for 16 days, You made me happy. Lots of love sir

  • @AryanKumar-vk1ex
    @AryanKumar-vk1ex Месяц назад +1

    Sir, finally I have run my program because of your efforts. Thank You Sir!😊

  • @learncode74
    @learncode74 11 месяцев назад +17

    Sir connector or vs code ka option nahi aa raha hai setup me kya kare

    • @jamitkumar7251
      @jamitkumar7251 4 месяца назад

      mere me bhi connector wala option nhi aarha

    • @vedantkadu
      @vedantkadu Месяц назад

      same here. solve hua hoga to btade bhai

  • @Hemantlawania
    @Hemantlawania 11 месяцев назад +12

    Hi sir i have downloaded Mysql installer 8.0.34 & in this my sql java connector not present so plz suggest me which version of java connector i have download?

    • @amritasingh5632
      @amritasingh5632 10 месяцев назад

      yes ..i also faced same issue

    • @Hemantlawania
      @Hemantlawania 10 месяцев назад

      @@amritasingh5632 so u can download jar file also then this issue get resolved

    • @shardulrastogi4369
      @shardulrastogi4369 10 месяцев назад +1

      @@amritasingh5632 same issue, did it resolve ?

    • @amritasingh5632
      @amritasingh5632 10 месяцев назад

      @@shardulrastogi4369 yaa ..it was resolved

    • @harshitbansal1104
      @harshitbansal1104 9 месяцев назад

      @@ayushkathariya which link

  • @harshitrajput8199
    @harshitrajput8199 7 месяцев назад +12

    mysql connection wala option show hi nahi ho raha mujha now what i have to do? pls give me soln

    • @vedantkadu
      @vedantkadu Месяц назад

      same here. solve hua hoga to btade bhai

  • @technologybaba192
    @technologybaba192 Год назад +40

    Sir my sql for vs code ka option hi nahi aa raha hai kya karu ?

  • @superclasher007
    @superclasher007 8 месяцев назад +5

    sir connector to aa hi nhi rha hai kya karu please help

  • @YaSHRaJ-ou9qy
    @YaSHRaJ-ou9qy 6 месяцев назад +5

    sir download p mera connector ni aara

  • @tanugupta9333
    @tanugupta9333 Год назад +18

    bhaiya mere m connector ka option hi nhi aa rha

    • @vinayaksahu1617
      @vinayaksahu1617 5 месяцев назад +2

      same

    • @vedantkadu
      @vedantkadu Месяц назад +1

      @@vinayaksahu1617 same here. solve hua hoga to btade bhai

  • @adarshmishra9376
    @adarshmishra9376 Год назад +1

    Thank you so much sir 2 ghante se yt pe dhund rha hu aapka hi video kaam aya
    Thank you sir🙏🙏🙏🙏🙏❤️❤️

  • @user-bf4zq7rc5k
    @user-bf4zq7rc5k Год назад

    Best video i have ever seen till now . sab kuch bataya ha aapne thank you so much sir.

  • @user-zd7ou5lc7b
    @user-zd7ou5lc7b 6 месяцев назад +5

    i just downloaded it butvs code option is not showing up in available products
    i have downloaded the latest version yet, what should i do now?

    • @vedantkadu
      @vedantkadu Месяц назад

      same here. solve hua hoga to btade bhai

  • @vrinda_van_wasi
    @vrinda_van_wasi 11 месяцев назад +2

    Sir vs code me connector j nhi show ho rha h

  • @NeetuSharma-sk2pg
    @NeetuSharma-sk2pg Месяц назад +2

    Sir ive only three items in mySpl "Mysql documentation 8.0", "Mysql installer for windows", "sample and example 8.0"....what should i do to get connector...??

    • @vedantkadu
      @vedantkadu Месяц назад

      same here. solve hua hoga to btade bhai

  • @gaiaalaya6993
    @gaiaalaya6993 17 дней назад

    it worked👍👍👍👍, you ended my three days torture to make jdbc connector work👻

  • @vivaanyadav1st
    @vivaanyadav1st Год назад +3

    MySQL Connectors and MySQL for Visual Studio are not sowing in latest version of MySQL

  • @ahankamat
    @ahankamat Год назад +3

    sir jo code hain createDB mein , where is it available?

  • @sauravgitte
    @sauravgitte 6 месяцев назад +1

    Very simply and beautifully explained 😊😊

  • @shakti715
    @shakti715 6 месяцев назад

    Thank you... it really help me.. when working in VSCode

  • @atulsoni3895
    @atulsoni3895 4 месяца назад +1

    Hello sir ye java projects down me show nahi kar raha hai recerence option bhi show nahi kar raha hai vscode me please help sir

  • @jbmrdairyfarm
    @jbmrdairyfarm Год назад

    Sir aap k pdhane ka tarika bht osm hh muje phli baar RUclips pr asa koi channel Mila hu jo itna deeply jakr padhata hh. ❤❤

    • @CodingWallahSir
      @CodingWallahSir  Год назад +1

      Thanks jatin for your valuable feedback ❤️❤️

  • @pagalgamer2635
    @pagalgamer2635 4 месяца назад

    Sir plz a big request plz Solve it - When I use intellij IDE for coding JDBC then after some time My laptop turned into blue screen 😢

  • @ishansaxena7390
    @ishansaxena7390 23 дня назад +3

    could not find mysql connector 7:23 ...please help

    • @sarthayush
      @sarthayush 9 дней назад

      same problem!

    • @ishansaxena7390
      @ishansaxena7390 9 дней назад

      @@sarthayush download the previous version of mysql...the version mentioned in video, u would get the mysql connector

  • @HarshVardhanTiwari-md3dz
    @HarshVardhanTiwari-md3dz 3 месяца назад +1

    Thank u so much....

    • @Sidymohamed_12
      @Sidymohamed_12 3 месяца назад

      please can you send me the code ?

  • @Ektabharti_183
    @Ektabharti_183 27 дней назад

    Done sir.... thanku so much it's so simple 👍

  • @beargrill5159
    @beargrill5159 7 месяцев назад +1

    I don't have mysql connectors option😢😢😢😢

    • @anupamkumar6796
      @anupamkumar6796 7 месяцев назад

      Same here buddy please help me if you have done

  • @user-cc7fk4ez9v
    @user-cc7fk4ez9v 13 дней назад +1

    Not showing option of connectors

  • @ujjwalpatidar3528
    @ujjwalpatidar3528 6 месяцев назад

    Thank you sir, you totally solved my problem..

  • @nikhilmaurya6617
    @nikhilmaurya6617 8 месяцев назад

    sir thank you for the perfect solution for jdbc connection it helpe me a lot 😍😍😍😍😍😍

  • @Revana04
    @Revana04 Год назад +5

    please provide code link for every videos in comment section

  • @SatyamKumar-xx1or
    @SatyamKumar-xx1or Год назад +1

    Not get the vs code option to mark on it

  • @JANVIRUPAPARA-df5fw
    @JANVIRUPAPARA-df5fw Год назад

    THANK YOUUUU SO MUCH BHAIYA
    Setup ho gayaaa🤩💓💫🥳🥳🥳🥳

  • @surajjha2887
    @surajjha2887 Месяц назад

    I am using vs code. when i simply click on 'run code' i am getting driver not found error. Then i downloaded 'Extension Pack for java' from the vs code extension menu. This has a separate option to run java. Whenever i click on 'run java' then it works but when i click on 'run code' it doesn't work.

  • @TheHariPutraOfficially
    @TheHariPutraOfficially 10 месяцев назад +2

    Sir you are doing noble job .. Lord Krishna make your aim to come true
    HARE Krishna

    • @shardulrastogi4369
      @shardulrastogi4369 10 месяцев назад

      Hello, were options of Connector in java, and Mysql for VS code available in MySQL installer.

  • @Jasneet
    @Jasneet Год назад +1

    Thankyou So much sir, Ho gaya mera sab kuch sahi sahi

  • @palvi_X_Kpop
    @palvi_X_Kpop 14 дней назад

    sir i am not6 able to do it pls help my situation is
    first i download the mysql installer and set the password but later i got to know that it is not the correct version so uninstalled everything and then again downloaded everything but at the stage of setting password it is not showing the same page as before so i thought i need to put the previous password ,so i did but again i am stuck pls help 😭😭

  • @tauheed0532
    @tauheed0532 Год назад +1

    how to connect jdbc in intellij IDEA

  • @_MeetHirpara
    @_MeetHirpara 5 месяцев назад

    sir you will explain it very well thank you sir

  • @bindubadeti334
    @bindubadeti334 4 месяца назад +1

    It's not showing MySQL connector and visual studio options

  • @mustafabohra6581
    @mustafabohra6581 Год назад +3

    sir at 6:48 MySQL for visual studio ka option show ahi ho rha he

    • @shreyashkakde9315
      @shreyashkakde9315 Год назад

      I am undergoing the same program, did you find a solution?

    • @swapnilsharma7605
      @swapnilsharma7605 Год назад

      @@shreyashkakde9315 same bro, did you?

    • @-PavanSingh
      @-PavanSingh 11 месяцев назад

      sm prob bro
      did you gt it?@@shreyashkakde9315

    • @sakshigonjare2932
      @sakshigonjare2932 7 месяцев назад

      Did anyone find the solution please reply

  • @chandrakalagandreti2257
    @chandrakalagandreti2257 2 месяца назад

    Sir,In the windows service name :MySQL80 it shows an error like the window service name is already used.what should I do.

  • @richasaraswat8813
    @richasaraswat8813 Месяц назад

    laptop me my sql pehle se install ho to jar file kese install karenge

  • @rahulsingh36033
    @rahulsingh36033 9 месяцев назад +1

    Sir My laptop ( type and networking) ke interface main Next ka option nahi aa raha hai

  • @Ctk24
    @Ctk24 2 месяца назад +1

    Bro i'm not getting MySQL connectors in the Available product while installing

    • @vedantkadu
      @vedantkadu Месяц назад

      same here. solve hua hoga to btade bhai

    • @Ctk24
      @Ctk24 Месяц назад +1

      ​@@vedantkadudon't know bhai, I didn't install it.

  • @Manishjha1234
    @Manishjha1234 Месяц назад

    Thank you very much sir. Main abhi MYSQL 8.0.38 install kiya hun hun . Isme connector ka option nahi hai.

  • @vedantgulhane4216
    @vedantgulhane4216 Год назад

    Thank you very much sir🎉🎉

  • @1stGames
    @1stGames Год назад +2

    After downloading mysql server and router installation fail. other things are installed. what should I do?

    • @kumaraditya5513
      @kumaraditya5513 Месяц назад

      make sure you are downloading the latest version AS this happens with older versions and since new vesion mai connector included nahi hota toh same version wala tumhe download karna hoga connector.

  • @PiyushKumar-tp4ns
    @PiyushKumar-tp4ns Год назад +1

    😢their is no har file in mys ststem.

  • @saurabhtahashildar560
    @saurabhtahashildar560 Месяц назад

    Vs Code option and connector wala option nahi hai so iska koi solution?

  • @anantshukla6395
    @anantshukla6395 9 месяцев назад +2

    You are awesome sir .. sir please provide the proper course as you mentioned in java developer road map 12LPA video ... I WOULD LOVE TO JOIN .❤

    • @CodingWallahSir
      @CodingWallahSir  9 месяцев назад +1

      Will try to plain otherwise you can follow only this playlist.

  • @dikshakumari5848
    @dikshakumari5848 2 месяца назад

    thank you so much.

  • @studypoint8265
    @studypoint8265 11 месяцев назад

    can you please tell me how to do the same in macos for C++, also I have xampp mysql database

  • @bhanubhusan4009
    @bhanubhusan4009 4 месяца назад

    connect ho gaya lekin ek code ko dubara run kr rahe hai toh error aa raha hai while creating database , any reason?

  • @AbhishekSingh-b4u
    @AbhishekSingh-b4u Месяц назад

    mere me ye karne ke bad bhi likh rha driver not found.. what can I do now??

  • @yashiverma994
    @yashiverma994 3 месяца назад

    Sir command line open krne ke baad jb password daal rhe h tb apne aap hi page close ho jata h.. kya kyu

  • @aryapandey6407
    @aryapandey6407 9 месяцев назад

    thank u so much sir 😊😊👍👍

  • @aadityatrivedi7601
    @aadityatrivedi7601 2 месяца назад

    sir vs code ka configuration nahi aa raha aur jdbc vs code se bhi connect nahi hoo rah hai

  • @pamidiram2437
    @pamidiram2437 8 месяцев назад

    very nice explained anna ..

  • @5e3satyasanthosh30
    @5e3satyasanthosh30 2 месяца назад

    Thank you sir

  • @devabdul
    @devabdul Год назад +1

    Thank you so much sir

  • @jayantadas907
    @jayantadas907 Год назад +1

    How to do this using xampp . please make a video on this😢

  • @pratudoquantoelado9333
    @pratudoquantoelado9333 6 месяцев назад

    Thank you !

  • @omkattarle8
    @omkattarle8 Год назад +1

    Thanks sir video is best

  • @rushikeshghevari1716
    @rushikeshghevari1716 Год назад +1

    Thanks sir 😊

  • @tanvichillal4430
    @tanvichillal4430 3 месяца назад

    finally database was connected successfully

    • @trishita._x26
      @trishita._x26 3 месяца назад

      Can you find MySQL connector?

  • @narusingh7518
    @narusingh7518 4 месяца назад

    sir I understand but I am unable to see the code

  • @rafiikhan-R2lofi
    @rafiikhan-R2lofi Год назад +1

    Thanku sir❤❤

  • @soundaryabejugam608
    @soundaryabejugam608 Год назад

    Thank you so much. It helps me a lot...

    • @CodingWallahSir
      @CodingWallahSir  11 месяцев назад

      Glad to hear that

    • @SIRUHUBTV
      @SIRUHUBTV 3 месяца назад

      @@CodingWallahSir sir pls reply us the solution of "vs code and connection option is not visible"
      Thank you

  • @rohitthakur6397
    @rohitthakur6397 11 месяцев назад

    Thankyou so much sir. 🙏

  • @thakursitanshusingh4385
    @thakursitanshusingh4385 Год назад +1

    curantly no Abbreviations of JDBC. Its called only JDBC. because of copyright issues.

  • @danv2141
    @danv2141 Год назад

    sir your video difrent of all

  • @user-ul8fh3ng6j
    @user-ul8fh3ng6j Год назад +1

    how can i get sql command line client ?
    bhai please help me iam unable to find command line client
    is this any seperate software which we have to install irrespective to sql ????

    • @muskansah4487
      @muskansah4487 Год назад

      I'm facing the same issue. were you able to solve it?

    • @raghuveersinghbora1424
      @raghuveersinghbora1424 Год назад

      Command line client aa jaega apane aap, bas sir ne jesa kiya vesa karo. Kaha se open karna h batata hu : Press win key, then type Mysql, dikh jaega, password daal ke khol lena

  • @Ankii_kumar
    @Ankii_kumar Год назад +1

    Thanks sir 🎉 ❤ , webpage me link kese kya jata hai backend ko 1 video me ye bhi bata dijiyega please

  • @MuhammadShahid-ci9sf
    @MuhammadShahid-ci9sf Год назад

    Thanks sir video bhot ache hy

    • @CodingWallahSir
      @CodingWallahSir  Год назад +1

      Thanks for your feedback muhmmad, I just made videos for these like comments

  • @vinayvats8231
    @vinayvats8231 6 месяцев назад

    Sir can u tell how to connect sql and jdbc in macos

  • @vanshkhanna515
    @vanshkhanna515 3 месяца назад

    Thanks sir

  • @ramgawali6087
    @ramgawali6087 Год назад +1

    Sir..MySQL Installer par MySQL VS CODE ye option aa hi nahi raha hai.. Kya karu ? (VS code installed hai )

  • @sksufiyanali1275
    @sksufiyanali1275 Год назад

    Thank you bhaii❤

  • @niteshtiwari9708
    @niteshtiwari9708 5 месяцев назад

    sir there is no option for mysql for vs code

  • @ayaanmukri5110
    @ayaanmukri5110 10 месяцев назад +1

    @CodingWallahSir Sir mere device me MySQL already installed hai but maine sirf workbench , shell and server install kiya tha to ab agar me firse install karuga to mere existing databases pe koi effect nahi hoga na ? and plus sir mujhe visual studios ka option hi nahi aa raha downloads me .

  • @wamu17
    @wamu17 6 месяцев назад

    Sir kindly explain that code in detail i didn't get what was written inside that code ❤

  • @user-fj9fq3wk8j
    @user-fj9fq3wk8j 5 месяцев назад

    My sql connector likha aa raha ha refrenced libraries ma ab magar not connected aa raha ha ab kya kara

  • @mreddy5142
    @mreddy5142 Месяц назад

    My system not showing the connection option how

    • @vedantkadu
      @vedantkadu Месяц назад

      same here. solve hua hoga to btade bhai

  • @infamous_SUSIL
    @infamous_SUSIL 5 месяцев назад

    sir mera java project niche show nhi kar raha hai jahan aap ne jar file import kia

  • @arijitkoley4036
    @arijitkoley4036 Месяц назад

    tried everything but problem still not solved

  • @jayeshnayee6735
    @jayeshnayee6735 7 месяцев назад

    Plz make video for installation setup first to end basic se

  • @KrunalSolanki-f7c
    @KrunalSolanki-f7c Месяц назад

    Sir is setup ki files kahase laye aap
    Vo kese laye

  • @iamFJ18
    @iamFJ18 23 дня назад

    Jar file include karne ke baaf bhi noclassfound exception a raha

  • @manigandanv979
    @manigandanv979 9 месяцев назад

    I can't find connector option in installer

  • @innocentboy02
    @innocentboy02 5 месяцев назад

    there was no option of MySQL connection

  • @raushanbaitha4391
    @raushanbaitha4391 4 месяца назад

    bhaiya woh server aur router install hone mwin error aara hai kya karna hai help please

  • @shivammallik2359
    @shivammallik2359 Год назад

    i have downloded 8.0.33 version and they have removed in application section they have removed mysql for vs what to do?

    • @CodingWallahSir
      @CodingWallahSir  Год назад

      Please ask your doubt in my discord server setup config channel, support team or community will help you.

  • @innocentboy02
    @innocentboy02 5 месяцев назад

    JDBC connecter not available for windows 🙃

  • @JyotsnaraniBehera-dj6bj
    @JyotsnaraniBehera-dj6bj 29 дней назад

    My SQL connector option Nehi aaraha hai

  • @sanatanitells855
    @sanatanitells855 Год назад

    sir intellij me nhi kar sakta hu kya ye sab?

  • @rahuljangid8227
    @rahuljangid8227 7 месяцев назад

    bhaiya please java developer series me videos ke sequence sahe order me krdo bahot confusion hoo rahe he. please bhaiya

  • @jp.studypointprayagraj
    @jp.studypointprayagraj 10 месяцев назад

    Sir microsoft SQL server per java swing project with visual studio code se connection ki video bana kar dalo within 1 day

  • @theoptionalvlog1628
    @theoptionalvlog1628 Год назад

    Jinke ismai installation ke time my sql for VS code ka option nahi aa raha vo uske bina baki process follow karke dekho....
    Mere ismai mai bhi nahi aa raha tha lekin maine baki steps follow ki to sab perfectly run hua 👍

    • @CodingWallahSir
      @CodingWallahSir  Год назад

      good

    • @bb1sr716
      @bb1sr716 11 месяцев назад

      Are bhai ek bat bolo hamare pass to code nahi hai to ham kaise connect kare

    • @amritasingh5632
      @amritasingh5632 10 месяцев назад

      ok ..I will try ...I was facing this issue

  • @dipa6010
    @dipa6010 7 месяцев назад

    cammand line client app open nahi ho rahi he password ka issue nahi he open hi nahi ho rahi he