Ada Code
Ada Code
  • Видео 5
  • Просмотров 131 521
How to Install Vim Editor, Repository problem solved & Run Shell Script program in Termux |Ada Code|
In this video, I will show you How to Install Vim Editor (Repository under Maintenance problem solved) and Run the Bash Shell Script program in Termux.
Hope the video is Helpful
And If it is Do Like, Share and Subscribe My Channel "Ada Code".
Ada Code Channel Link:-
ruclips.net/channel/UCvjL...
Download Link:-
Termux from Playstore
play.google.com/store/apps/details?id=com.termux&hl=en_IN&gl=US
*Command for change repository:
termux-change-repo
*Commands for installation of Vim Editor:
pkg install vim
Other helpful Videos:-
Install and configure Microsoft Visual Studio Code (VS Code)
ruclips.net/video/X-oZvllD2FY/видео.html
How to Install JDK File and Run JAVA program in Microsoft Visual Studio( VS Cod...
Просмотров: 4 638

Видео

How to Install MinGW (MSYS2) and Run C, C++ program in Microsoft Visual Studio( VS Code)|Ada Code|
Просмотров 69 тыс.2 года назад
In this video, I will show you How to Install MinGW (MSYS2) and Run C, C programs in Windows 11, Windows 10, Windows 7. Even If I am performing this video in Windows 11 System, the same process and files are required in any other Windows Operating System. Hope the video is Helpful And If it is Do Like, Share and Subscribe My Channel "Ada Code". Ada Code Channel Link:- ruclips.net/channel/UCvjL....
How to Install and Configure JDBC with MySQL also Create Database in VS Code |Ada Code|
Просмотров 55 тыс.3 года назад
In this video I will show you How to Install and configure JDBC with MySQL in VS Code and Run a program in Windows 11, Windows 10, Windows 7. Even If I am performing this video in Windows 11 System, same process and files are required in any other Windows Operating System. Hope the video is Helpful And If it is Do Like, Share and Subscribe My Channel "Ada Code". Ada Code Channel Link:- ruclips....
How to Install JDK File and Run JAVA program in Microsoft Visual Studio( VS Code)|Ada Code|
Просмотров 1,2 тыс.3 года назад
In this video I will show you How to Install and configure JDK file and Run a JAVA program in Microsoft Visual Studio Code (VS Code) in Windows 11, Windows 10, Windows 7. Even If I am performing this video in Windows 11 System, same process and files are required in any other Windows Operating System. Hope the video is Helpful And If it is Do Like, Share and Subscribe My Channel "Ada Code". Ada...
Install and configure Microsoft Visual Studio Code (VS Code)|Windows 11| Windows 10|Ada Code|
Просмотров 1,1 тыс.3 года назад
In this video I will show you How to Install and configure Microsoft Visual Studio Code (VS Code) in Windows 11, Windows 10, Windows 7. Even If I am performing this video in Windows 11 System, same process and files are required in any other Windows Operating System. Hope the video is Helpful And If it is Do Like, Share and Subscribe My Channel "Ada Code". Ada Code Channel Link:- ruclips.net/ch...

Комментарии

  • @srinu.2003
    @srinu.2003 3 дня назад

    How is your voice clear, Is there any tool for that?

  • @abdulraheem-dr7xs
    @abdulraheem-dr7xs 3 дня назад

    my bin folder is empty

  • @user-ge7ck3xd2m
    @user-ge7ck3xd2m 12 дней назад

    I want to download msys 32bit but I can't, can you help me?

  • @_ns_booster_official_673
    @_ns_booster_official_673 13 дней назад

    Thank You...! For Your Efforts❤

  • @thoppilvlogs877
    @thoppilvlogs877 15 дней назад

    Thank you so much dear for such a good video I was struggling since days for this jdbc finally it is successfully done😊

  • @ajaygunti9801
    @ajaygunti9801 20 дней назад

    Thank you very much

  • @ProximaHeisenberg-xg3vz
    @ProximaHeisenberg-xg3vz 26 дней назад

    when i enter the cmnd " gdb -- version " it says not found? help-

  • @anjalnigam4771
    @anjalnigam4771 28 дней назад

    great info.

  • @sahishnutappal4284
    @sahishnutappal4284 29 дней назад

    really informative 🙌🙌

  • @Sauce-ke
    @Sauce-ke Месяц назад

    Where did you get the other folders such as JRE System and Referenced Libraries all of a sudden in 9:48 ? They just suddenly pops up

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

    In the 8:29, windows service name is MySQL80 i have an error like the window service name is already used what should I do mam.

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

    In my mysql program files(x86),i don't have folder called connector j 8.0 WHat should i do now Please tell me

  • @user-eo1cj4ll5t
    @user-eo1cj4ll5t 2 месяца назад

    Mysql connector is not found in mysql community installer version 37.other connectors after downloading and added to libraries it is not working.

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

    import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public class CreateDB { static final String DB_URL = "jdbc:mysql://localhost:3306/"; static final String USER = "root"; static final String PASS = "pass1234"; public static void main(String[] args) { try (Connection conn = DriverManager.getConnection(DB_URL, USER, PASS); Statement stmt = conn.createStatement()) { String sql = "CREATE DATABASE IF NOT EXISTS AmanDA"; stmt.executeUpdate(sql); System.out.println("Database created successfully..."); } catch (SQLException e) { e.printStackTrace(); } } }

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

    can u please send the code you have pasted ji

  • @team-nos2924
    @team-nos2924 2 месяца назад

    thx u so much ada , im student and work in a projet from 3 month .Now i have success haha if u can now java to html ^^

  • @itc-0076
    @itc-0076 3 месяца назад

    the msys2 installation stays stuck at 50 %

  • @Bhathiyainterithm-ee6bc
    @Bhathiyainterithm-ee6bc 3 месяца назад

    thankyou

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

    import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public class Create_DB { static final String DB_URL = "jdbc:mysql://localhost:3306/"; static final String USER = "root"; static final String PASS = "AdaCode"; public static void main(String[] args) { try (Connection conn = DriverManager.getConnection(DB_URL, USER, PASS); Statement stmt = conn.createStatement()) { String sql = "CREATE DATABASE VRD"; stmt.executeUpdate(sql); System.out.println("Database created successfully..."); } catch (SQLException e) { e.printStackTrace(); } } }

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

    acutllay u're do a great jop

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

    how to this on mac

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

    Thank you alot. I needed this.

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

    Thanks, well organized video to configure the JDBC in VS code!!!

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

    thanks

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

    Does Msys2/pacman (2013) replace MinGW (2005).. which seems replaced Cywin (1995), or would you use one over another for certain applications? I know Docker containers and VMs are a little different.. but PowerShell and WSL2 also seem like a windows way of getting a linux-like terminal. Python's subprocess also seems like it can do everything you would want in a bash environment... or just installing Git , GnuWin32 or unxutils seems to get you the binaries for windows?

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

    Thnx buddy

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

    i tried but failed to connect😔

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

    Is it mandatory to have the same connector version as other SQL components? Plz reply

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

      same problem theres no connector for me too

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

      Try again close that window you will get it

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

    Thank You Soooo....Much Dear Really Very Very Helpful 💞💯❤

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

    very very thank you I couldn't find a proper guide for mingw 64bit and always the bin folder is empty but this time i saw your video and you provided different steps 😁 now my code is executing in an instant 😊 i troubleshooted for more than a week 😅 again very very thanks for the guide

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

    maam in vs code i am getting there is no exception about class not found, but when i refresh the phpMyadmin admin record will not inserting even my code is correct

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

    import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public class Create_DB { static final String JDBC_DRIVER = "jdbc:mysql://localhost:3306/"; static final String USER = "root"; static final String PASS = "1234"; public static void main(String[] args) { try (Connection conn = DriverManager.getConnection(JDBC_DRIVER, USER, PASS); Statement stmt = conn.createStatement();) { String sql = "CREATE DATABASE VRD"; stmt.executeUpdate(sql); System.out.println("Database created successfully..."); } catch (SQLException e) { e.printStackTrace(); } } // end main } // end class Create_DB

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

    Nothing in here cannot be gained out side the instructions.

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

    thanks, best video

  • @bbmindianhi-techsongs8741
    @bbmindianhi-techsongs8741 7 месяцев назад

    Kaisa system hai tumhaara literally mere me ek bhi error nhi aaya

  • @Blitzkrieg-XXIII
    @Blitzkrieg-XXIII 7 месяцев назад

    You helped me solve the exact problem I had !! Thank you so much!!

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

    why you write a title in French and dont speak any word of this languange in your video !!!! i will be glad if 10 million of chineses creates a lot of videos with a indian title and speak chinese inside ... you will see how it's pleasant !!!!!!

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

    Bin shows empty what I can do ? Guide me @ada code

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

    really thanks Mam 🙏🙏🙏🙏

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

    How are you getting the Referenced Libraries folder ?

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

      I was looking for it too. It's on the "Java Project" section on the lower part of the screen

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

    I'm direly grateful for the invaluable help this video had for me and the more to its creator.

  • @AmanKumar-cc6ye
    @AmanKumar-cc6ye 9 месяцев назад

    Thank you Vaishnavi didi for this informational video. Helped a lot and finally I was able to connect database to mine project after going through a lot of guides.

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

    thank you very much

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

    This video helps me lot. Thank you

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

    Thank you ..

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

    thank you

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

    hey i am facing this type error :- com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:172) can you gave me solution

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

    Still showing the same error as no suitable driver found

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

      did u found any solution i am also getting the same error after repeating the same steps plz hellp me

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

      @@kevalshah5594 first set path variable in system environment and put location of mysql application folder in c drive with mysql j connector ,then i will be work smoothly.

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

      We need build path it I used in eclipse I don't know about vs code

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

    Getting error Target not found

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

    Thank you so much ,your video helped 😊❤