VB.NET How To Connect To An SQL Server Over The Internet.

Поделиться
HTML-код
  • Опубликовано: 29 дек 2024

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

  • @Hero1Alfa
    @Hero1Alfa 5 лет назад +3

    thank you , you are the only one who really aware about real remote connection to db all other spoke about local internet connection .

  • @danielahmadiadib3228
    @danielahmadiadib3228 4 года назад +4

    the explanation was great, i wish every one would explain programming just as good as you. Good Job.

  • @myblackstar
    @myblackstar 2 года назад

    Bruh after watching your video I was able to connect to VM SQLExpress with no Problem super easy to follow your instructions. Thank you :)

  • @foreigner2thisworld
    @foreigner2thisworld 4 года назад +3

    Thanks Andrew for taking the time and effort to create such informative videos!

  • @JohanSandq
    @JohanSandq 5 лет назад +2

    Fantastic video. Covers all you need from start to end. Many people recommend using VPN for DB connections, maybe in next video you could elaborate on security issues and how you would avoid port sniffers from finding your database

  • @luissianyt9840
    @luissianyt9840 23 дня назад +1

    Even in 2024 still works, thanks

  • @josueosorio4256
    @josueosorio4256 2 года назад

    Gracias, ya días he andado buscando esto y por fin lo encontré. Lo intentaré hacer.

  • @vladanulardzic5859
    @vladanulardzic5859 5 лет назад +3

    Perfect video ! Really perfect video ! Including testing all the way ! Keep on.

  • @Aidan.17
    @Aidan.17 3 года назад

    Default port 1433 should only be used for default instance named instances are dynamic. Sorry had to mention this because used to see lots of IT guys using named instances trying to force 1433 and it causes a few probs.

  • @gax18
    @gax18 6 лет назад +1

    Can you tell me the problem when i put my ip address in the server name it will connect but when i tried to enter the public ip address it gives network or instance error i really dont know can you help me out?

  • @abraofrancisco7198
    @abraofrancisco7198 6 лет назад +1

    Hi Andrew
    On how to connect without port forwarding can I use just the Hostname in case the ip changes or doesn't not change in free version?

  • @boat2020com
    @boat2020com 4 года назад

    That is great, easy and understandable way of teaching. Thank you so much.

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  4 года назад

      Thank you for your kind words 😊

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

    First of all, port forwarding only work if you are out of LAN, if you in an area where your ISP formed a large LAN, you won't able to make that work, especially those live in apartment/flat/condominium. So you have to change your internet plan, get Static IP address or ask for a single line beside sharing within the resident area.

  • @khld1976
    @khld1976 3 года назад

    Some people say that this kind of connection string with the user ID and password can be unsafe and susceptible to hacking. Is this true or is the connection string encrypted in such a way that it cannot be intercepted over the internet?

  • @MrYemenBoy
    @MrYemenBoy 3 года назад

    Very helpful video..
    How about if the isp ip change..
    Is there away to get around.??

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

    I did all the steps but I can't connect via the internet

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

    It's very helpful ❤❤❤ thanks a lot

  • @afzalhossainbd
    @afzalhossainbd 5 лет назад

    Hi, I have done exactly the same as you have described, I can access the local network, not a problem, but I can not access the internet. What is my IP is always changing after some time.

  • @mousaqadry4276
    @mousaqadry4276 6 лет назад

    one billion like .... i am sure that you are a big expert

  • @manthangohel9237
    @manthangohel9237 3 года назад

    Let's say I made a Windows form in VB.Net and connected it to the SQL Server over the internet in my machine...
    If I share the project with my friend who hasn't done the whole process of making the SQL Server work over the internet....
    Then will he be able to access the database over the internet or he will be required to enable the SQL Server too?

  • @yerkoantonioalvarez
    @yerkoantonioalvarez 2 года назад

    and how it done when the public ip changes dynamicly?

  • @blurptv2352
    @blurptv2352 6 лет назад

    sir i use to connect sql database via ODBC. Can you make a tutorial in odbc that can be connected in the internet or can be access?

  • @bradhoyer8446
    @bradhoyer8446 4 года назад

    How do I connect the software to my sql server? It keeps saying check network connections but there are all good!

  • @saarkcomputers8555
    @saarkcomputers8555 2 года назад

    Sir We are using Quick Heal and there is no Option of Add Pocket Rule, We followed all instructions as you shown, But its not working on Windows 11

  • @StoryTimeTreasurefsfun
    @StoryTimeTreasurefsfun 5 лет назад +1

    i subscribed becuz you are actually amazing , i really really hope you dont put an end to these tutorials and all these info you have , Thanks alot.

  • @liamtwine2267
    @liamtwine2267 3 года назад

    its asking me to connect to a server? but obv i dont have one yet

  • @charlesledford2151
    @charlesledford2151 5 лет назад

    This is a great, to the point, video. Subbed for sure.

  • @profipix
    @profipix 6 лет назад

    I did exactly as in the video. No antivirus to worry about. Running windows 10. When I port check, port 1433 works but not 1434. When I use the public IP "xx.xxx.xxx.xxx/SQLSERVER", I get the error that the network path is not found. I also tried just using the public IP without the server path.
    So, port 1433 works good, 1434 is not open, though already port forwarded. Not sure what to make of this.

  • @tristaniexceed2260
    @tristaniexceed2260 7 лет назад +1

    hey Andrew. your tutorials are very easy to understand. if I may ask, how can you make a data from a database appear in a text. and change it if you changed the primary key.
    for example. there's a text box where you input your ID
    Id =1
    username = Hello
    password = world
    and when I change the Id in the text box the username and password changes according to the row in the database.thank you
    I am also using visual studios visual basic 2015 and SQL. sorry for bad English

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  7 лет назад

      you could write a query, something like
      username = from person in mytable
      Where id = 1
      Select(person.username)
      and so on.

    • @tristaniexceed2260
      @tristaniexceed2260 7 лет назад +1

      Thank you for replying. hope you could upload more tutorials bro. :) godbless!!!

  • @nesvlogs7465
    @nesvlogs7465 5 лет назад +1

    However, when i reset router, my IP address in web 'what is my ip change'. How to repair it?

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  5 лет назад +1

      Cảnh Phim Hay you will need a static IP address, if not, check out my video on doing it without port forwarding

    • @evermovie461
      @evermovie461 5 лет назад

      @@ANdR3WISCOOL where is the video

  • @chjayakrishnajk
    @chjayakrishnajk 4 года назад

    bro I have quick heal total security I how can I add packet value

  • @bradhoyer8446
    @bradhoyer8446 4 года назад

    Amazing video!!!!!!!!!! I’m trying to connect software to the database

  • @rohanbimalraj3020
    @rohanbimalraj3020 5 лет назад

    How do you connect it in Windows form app using c#

  • @Issus94
    @Issus94 4 года назад

    if another PC wants to make a query from your created database, does your pc have be on all the time?

  • @sarlemonvannasing705
    @sarlemonvannasing705 7 лет назад +1

    Dear sir, it means via internet not local network right...!

  • @amigostv3403
    @amigostv3403 4 года назад

    sir, can u give me the download link of that SQL Server plsss. or what SQLSERVER version is that?

  • @Easyali1
    @Easyali1 4 года назад

    does it require Static IP....

  • @aashishagarwal6649
    @aashishagarwal6649 6 лет назад

    I tried using 1433 for named instance but it's not working...
    Plz suggest

  • @brianducharme3418
    @brianducharme3418 5 лет назад +1

    Excellent Tutorial - thank you

  • @Keracher94
    @Keracher94 4 года назад

    Your video is very good; works well from my computer. But I cannot get this to work from other computers! Also why do you not cover appconfig?

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

    Then the only option is😢 is to expode the who SQL DB to internet. Is there a better way of doing things

  • @pw.70
    @pw.70 4 года назад

    Brilliant! Thanks for this - great explanation.

  • @qual1481
    @qual1481 3 года назад

    When i create the database on my desktop machine at home, then say i go to college with my laptop, would i be able to access the database even if my home machine is turned off?

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  3 года назад

      Hey there, no sorry, the machine would need to be turned on in order to access the database

    • @qual1481
      @qual1481 3 года назад

      @@ANdR3WISCOOL Okay thank you for the reply

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  3 года назад

      @@qual1481 no worries, good luck at college 😊

  • @logentheranmaratthandavar7978
    @logentheranmaratthandavar7978 3 года назад

    Bro you are such a boooooommmmmm!!!!!!.... I Subscribed you.

  • @JanezKrnc-San
    @JanezKrnc-San 6 лет назад

    Hello!
    My IPAll on TCP/IP properties is set to a different port than default 1433. Its on 50123 (all others are on 1433). I've added inbound/outbound exception in firewall for both 1433 and 50123, as well as adding SQL server and sql browser application exceptions. Connecting to server doesn't work (tried
    xx.xxx.xx.xxx also
    xx.xxx.xx.xxx,1433 also
    xx.xxx.xx.xxx,50123
    Nothing works. What else do you suggest i change/try (possibly regarding my 50123 port) ? I've spent many hours and all the tutorials/troubleshooters about it say the same things and i've done all that. Connecting to it locally (xxx.xxx.x.x,50123) works.
    Gosh please help.
    P.S.:
    Remote connection is allowed, TCP/IP enabled everywhere (as well as named pipes).

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  6 лет назад +2

      is your port forwarding working?

    • @JanezKrnc-San
      @JanezKrnc-San 6 лет назад

      Oh man. I was waiting for a guy at the firm to do the port forwarding while i wrote this comment. tbh, wasn't convinced that that would straight solve the issue in itself, but it DID! Kind of embarrased I didn't wait until a thing you specifically said in the video would get done before writing a comment. Anyways thank you so much! You saved me alot of frustration :) Other pages i've looked didn't mention port forwarding much at all.

    • @JanezKrnc-San
      @JanezKrnc-San 6 лет назад +1

      After port forwarding was set for both 1433 and 50123 ports, I could connect via internet by specifying server name as: ",50123" in case someone else has an issue with different port than default.

  • @mujabdillah2618
    @mujabdillah2618 7 лет назад +1

    hello sir. I followed all your steps but still i cannot access my mssql throught internet. can you please help me? i already shutdown my firewall becase it is one to my suspect but still cannot access it.

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  7 лет назад

      your ISP might not allow portforwarding, I will make a video in the near future on what to do if you cant port forward.

    • @mujabdillah2618
      @mujabdillah2618 7 лет назад

      now is the future. please sir :)

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  7 лет назад

      hahahahha good one lol, the next video I make will be for you.

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  7 лет назад +1

      here is a video on how you can connect to your sql server over the internet without portforwarding
      ruclips.net/video/T5kvWzPb9Ko/видео.html

  • @mukilana555
    @mukilana555 6 лет назад

    1433 in SQLEXPRESS instance ID , I want NAMED INSTANCE Port ID

  • @mukilana555
    @mukilana555 6 лет назад

    How To Use Instance Name Connection And Use Another PORT ID change Option

  • @incredibleG007
    @incredibleG007 5 лет назад +1

    There is no need to set up Outbound new rule! Inbound is good enough!

  • @cliffordfrancisco8687
    @cliffordfrancisco8687 7 лет назад

    I followed all the instructions but I still can't connect to the SQL Server... Why Sir? Can you tell me what is the reasons behind it?

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  7 лет назад

      your isp might have blocked your ports, here is a video on how you can connect to your sql server over the internet without portforwarding
      ruclips.net/video/T5kvWzPb9Ko/видео.html

  • @tracysu1778
    @tracysu1778 5 лет назад

    How to connect sql database working network from home network? Plz

  • @surtole7584
    @surtole7584 6 лет назад

    MY password becomes something different and i dont know what it is!

  • @diginetcomputer3390
    @diginetcomputer3390 6 лет назад

    thanx it actually works the same way

  • @ktan18879
    @ktan18879 6 лет назад

    I have no problem with every single part except for the last one where there is an instance specific error

  • @LPadillaCR
    @LPadillaCR 4 года назад

    Simply superb!

  • @abdulsms
    @abdulsms 6 лет назад

    How to run vb.net program through vpn

  • @mryan5522
    @mryan5522 3 года назад

    its so risky, ive tried to open port and boom. I got thousands of virus incoming.

  • @jaservtechmotovlog
    @jaservtechmotovlog 4 года назад +1

    awesome, thanks bro

  • @jeetchheda8916
    @jeetchheda8916 6 лет назад

    no matter what I do in India port forwarding is not working in any router please help me

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  6 лет назад +1

      jeet chheda see my video on accessing an sql server over the internet without port forwarding

    • @jeetchheda8916
      @jeetchheda8916 6 лет назад

      Coding With Andrew Thanks actually just before u replied i was able to navigate there😅😂 thanks alot btw.

    • @jeetchheda8916
      @jeetchheda8916 6 лет назад

      Coding With Andrew Hey Guess what.. I found another Method that could help the same way.. But it has a drawback, It Forwards ip only till the time the program is running.. and As soon as u start it again.. the adress changes.. The method was to use ngrok.exe

  • @alyagoot94
    @alyagoot94 7 лет назад

    thank you very much you'r really awesome , i just make my own db my pc home and connect from work db , thanks man

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  7 лет назад

      +Kankon thank you :)

    • @tracysu1778
      @tracysu1778 5 лет назад

      How to link sql database @ work pc from home?

  • @ANdR3WISCOOL
    @ANdR3WISCOOL  7 лет назад +1

    Here is a video on how you can connect to your sql server over the internet without port forwarding
    ruclips.net/video/T5kvWzPb9Ko/видео.html

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

    Thanks Andrew.

  • @gmteo3573
    @gmteo3573 6 лет назад

    is this safe from the hackers?

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  6 лет назад

      Make sure your password is decent and that you don’t have your connection string in plain text

  • @snowiethetoolguy
    @snowiethetoolguy 3 года назад

    Tidy job... thanks

  • @darryck99
    @darryck99 3 года назад

    You’re amazing!

  • @nesvlogs7465
    @nesvlogs7465 5 лет назад +1

    In your video, Your ID address is 101.160.5.181. Whene You reset your router, this id address is going to change

    • @ANdR3WISCOOL
      @ANdR3WISCOOL  5 лет назад

      Cảnh Phim Hay correct, you have three options, create an application “like I did” to tell you your up address, use a static IP address or use hamachi

    • @nesvlogs7465
      @nesvlogs7465 5 лет назад

      @@ANdR3WISCOOL hamachi? What is this?

  • @нашааптека-ж9и
    @нашааптека-ж9и 6 лет назад +2

    thank's so much!!!

  • @jimmynongololikidev.3361
    @jimmynongololikidev.3361 7 лет назад +1

    Merci pour cet tutoriel cest vraiment secourant

  • @rexregalado6176
    @rexregalado6176 7 лет назад +1

    thanks bro..

  • @elwaddaly
    @elwaddaly 5 лет назад

    I want to download this video >>> Why don't you let me do this ... please I need this video

    • @romansnellies
      @romansnellies 5 лет назад

      www.ssruclips.net/video/jgWOZT6za3g/видео.html

  • @ilaBaroIT
    @ilaBaroIT 6 лет назад +1

    well
    I was search this for months

  • @keremislim
    @keremislim 6 лет назад

    Awesome Thank you.

  • @egysoft100
    @egysoft100 4 года назад

    Perfect, Thanks ..........

  • @max-kw5lf
    @max-kw5lf 2 года назад

    love u mate

  • @techz7675
    @techz7675 6 лет назад

    Cool video

  • @momloc7805
    @momloc7805 2 года назад

    you Test on same machine.

  • @chatchaiphongvicha9675
    @chatchaiphongvicha9675 4 года назад +1

    ขอแปะครับ

  • @manojdebnath3242
    @manojdebnath3242 3 года назад

    👍👍👍👍

  • @ademajames7250
    @ademajames7250 5 лет назад

    Thanks

  • @afsarali4754
    @afsarali4754 3 года назад

    Get at lost

  • @truckscalecambodia3523
    @truckscalecambodia3523 3 года назад

    hello sir can i contact you