MYSql?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • perspolis

    MYSql?

    Hi
    I want to connect to a mysql database on my site for example www.xyz.com
    what settings is needed to connect to that by oledataadabter?
    thx


  • Hans Kesting

    #2
    Re: MYSql?

    perspolis wrote:[color=blue]
    > Hi
    > I want to connect to a mysql database on my site for example
    > www.xyz.com what settings is needed to connect to that by
    > oledataadabter?
    > thx[/color]

    try here:
    All connection strings in one place. Find the syntax for your database connection using ADO.NET, ADO, ODBC, OLEDB, C#, VB, VB.NET, ASP.NET and more.


    Hans Kesting


    Comment

    • perspolis

      #3
      Re: MYSql?

      thx hans
      "Hans Kesting" <news.2.hansdk@ spamgourmet.com > wrote in message
      news:Oisc4o7eFH A.612@TK2MSFTNG P12.phx.gbl...[color=blue]
      > perspolis wrote:[color=green]
      > > Hi
      > > I want to connect to a mysql database on my site for example
      > > www.xyz.com what settings is needed to connect to that by
      > > oledataadabter?
      > > thx[/color]
      >
      > try here:
      > http://www.connectionstrings.com/
      >
      > Hans Kesting
      >
      >[/color]


      Comment

      • Mark Rae

        #4
        Re: MYSql?

        "perspolis" <rezarms@hotmai l.com> wrote in message
        news:u55FBn6eFH A.2244@TK2MSFTN GP15.phx.gbl...
        [color=blue]
        > what settings is needed to connect to that by oledataadabter?[/color]

        Since you're posting in a .NET forum, I'm curious as to why on earth you'd
        want to use an OleDb driver when there is a truly excellent native .NET data
        provider available...



        Comment

        • perspolis

          #5
          Re: MYSql?

          yeah,you 're right..thx :) I do it
          "Mark Rae" <mark@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
          news:O3JD7h8eFH A.2076@TK2MSFTN GP15.phx.gbl...[color=blue]
          > "perspolis" <rezarms@hotmai l.com> wrote in message
          > news:u55FBn6eFH A.2244@TK2MSFTN GP15.phx.gbl...
          >[color=green]
          > > what settings is needed to connect to that by oledataadabter?[/color]
          >
          > Since you're posting in a .NET forum, I'm curious as to why on earth you'd
          > want to use an OleDb driver when there is a truly excellent native .NET[/color]
          data[color=blue]
          > provider available...
          > http://crlab.com/mysqlnet/
          >
          >[/color]


          Comment

          • Adam Clauss

            #6
            Re: MYSql?

            "Mark Rae" <mark@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
            news:O3JD7h8eFH A.2076@TK2MSFTN GP15.phx.gbl...[color=blue]
            > Since you're posting in a .NET forum, I'm curious as to why on earth you'd
            > want to use an OleDb driver when there is a truly excellent native .NET
            > data provider available...
            > http://crlab.com/mysqlnet/[/color]


            Maybe because that one isn't free?

            --
            Adam Clauss


            Comment

            • Mark Rae

              #7
              Re: MYSql?

              "Adam Clauss" <cabadam@tamu.e du> wrote in message
              news:11c2j6ra05 2mn44@corp.supe rnews.com...
              [color=blue]
              > Maybe because that one isn't free?[/color]

              Neither are Windows or C# - what's your point...?


              Comment

              • Adam Clauss

                #8
                Re: MYSql?

                "Mark Rae" <mark@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
                news:Od11RE$eFH A.3032@TK2MSFTN GP10.phx.gbl...[color=blue]
                > "Adam Clauss" <cabadam@tamu.e du> wrote in message
                > news:11c2j6ra05 2mn44@corp.supe rnews.com...
                >[color=green]
                >> Maybe because that one isn't free?[/color]
                >
                > Neither are Windows or C# - what's your point...?[/color]

                Actually, C# is free. Visual Studio is not. The .NET framework is a free
                download. As is Mono (in the event you are runnin *nix).

                My point is, you asked why on earth he was trying to use the OleDb driver.
                Maybe because he didn't want to spend any more money...

                On the other hand, I believe if you dig around the developer section of the
                MySQL website, there IS a free ADO.NET library there for MySQL.
                Unfortunately, their website seems to be down at the moment so I can't give
                the exact link.

                --
                Adam Clauss


                Comment

                • perspolis

                  #9
                  Re: MYSql?

                  really I need a free driver..
                  "Adam Clauss" <cabadam@tamu.e du> wrote in message
                  news:11c2q3srj9 q1147@corp.supe rnews.com...[color=blue]
                  > "Mark Rae" <mark@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
                  > news:Od11RE$eFH A.3032@TK2MSFTN GP10.phx.gbl...[color=green]
                  > > "Adam Clauss" <cabadam@tamu.e du> wrote in message
                  > > news:11c2j6ra05 2mn44@corp.supe rnews.com...
                  > >[color=darkred]
                  > >> Maybe because that one isn't free?[/color]
                  > >
                  > > Neither are Windows or C# - what's your point...?[/color]
                  >
                  > Actually, C# is free. Visual Studio is not. The .NET framework is a free
                  > download. As is Mono (in the event you are runnin *nix).
                  >
                  > My point is, you asked why on earth he was trying to use the OleDb driver.
                  > Maybe because he didn't want to spend any more money...
                  >
                  > On the other hand, I believe if you dig around the developer section of[/color]
                  the[color=blue]
                  > MySQL website, there IS a free ADO.NET library there for MySQL.
                  > Unfortunately, their website seems to be down at the moment so I can't[/color]
                  give[color=blue]
                  > the exact link.
                  >
                  > --
                  > Adam Clauss
                  >
                  >[/color]


                  Comment

                  • perspolis

                    #10
                    Re: MYSql?

                    could you send me it's address?
                    "Adam Clauss" <cabadam@tamu.e du> wrote in message
                    news:11c2q3srj9 q1147@corp.supe rnews.com...[color=blue]
                    > "Mark Rae" <mark@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
                    > news:Od11RE$eFH A.3032@TK2MSFTN GP10.phx.gbl...[color=green]
                    > > "Adam Clauss" <cabadam@tamu.e du> wrote in message
                    > > news:11c2j6ra05 2mn44@corp.supe rnews.com...
                    > >[color=darkred]
                    > >> Maybe because that one isn't free?[/color]
                    > >
                    > > Neither are Windows or C# - what's your point...?[/color]
                    >
                    > Actually, C# is free. Visual Studio is not. The .NET framework is a free
                    > download. As is Mono (in the event you are runnin *nix).
                    >
                    > My point is, you asked why on earth he was trying to use the OleDb driver.
                    > Maybe because he didn't want to spend any more money...
                    >
                    > On the other hand, I believe if you dig around the developer section of[/color]
                    the[color=blue]
                    > MySQL website, there IS a free ADO.NET library there for MySQL.
                    > Unfortunately, their website seems to be down at the moment so I can't[/color]
                    give[color=blue]
                    > the exact link.
                    >
                    > --
                    > Adam Clauss
                    >
                    >[/color]


                    Comment

                    • Adam Clauss

                      #11
                      Re: MYSql?



                      --
                      Adam Clauss

                      "perspolis" <rezarms@hotmai l.com> wrote in message
                      news:OjFz9JHfFH A.3788@tk2msftn gp13.phx.gbl...[color=blue]
                      > could you send me it's address?
                      > "Adam Clauss" <cabadam@tamu.e du> wrote in message
                      > news:11c2q3srj9 q1147@corp.supe rnews.com...[color=green]
                      >> "Mark Rae" <mark@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
                      >> news:Od11RE$eFH A.3032@TK2MSFTN GP10.phx.gbl...[color=darkred]
                      >> > "Adam Clauss" <cabadam@tamu.e du> wrote in message
                      >> > news:11c2j6ra05 2mn44@corp.supe rnews.com...
                      >> >
                      >> >> Maybe because that one isn't free?
                      >> >
                      >> > Neither are Windows or C# - what's your point...?[/color]
                      >>
                      >> Actually, C# is free. Visual Studio is not. The .NET framework is a
                      >> free
                      >> download. As is Mono (in the event you are runnin *nix).
                      >>
                      >> My point is, you asked why on earth he was trying to use the OleDb
                      >> driver.
                      >> Maybe because he didn't want to spend any more money...
                      >>
                      >> On the other hand, I believe if you dig around the developer section of[/color]
                      > the[color=green]
                      >> MySQL website, there IS a free ADO.NET library there for MySQL.
                      >> Unfortunately, their website seems to be down at the moment so I can't[/color]
                      > give[color=green]
                      >> the exact link.
                      >>
                      >> --
                      >> Adam Clauss
                      >>
                      >>[/color]
                      >
                      >[/color]


                      Comment

                      Working...