mysql_fetch_stmt

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

    mysql_fetch_stmt

    Does anyone know if mysql_fetch_stm t can be used in any version <5.0 ?

    Thanks, Ike



  • Bill Karwin

    #2
    Re: mysql_fetch_stm t

    Ike wrote:[color=blue]
    > Does anyone know if mysql_fetch_stm t can be used in any version <5.0 ?[/color]

    I can find no string by that name anywhere in the MySQL 5.0.2 source
    code. Are you referring to a supposed API call or SQL syntax or... ?

    Regards,
    Bill K.

    Comment

    • Ike

      #3
      Re: mysql_fetch_stm t

      I think its in libmsyq.dll

      "Bill Karwin" <bill@karwin.co m> wrote in message
      news:cvdlo702uc v@enews4.newsgu y.com...[color=blue]
      > Ike wrote:[color=green]
      > > Does anyone know if mysql_fetch_stm t can be used in any version <5.0 ?[/color]
      >
      > I can find no string by that name anywhere in the MySQL 5.0.2 source
      > code. Are you referring to a supposed API call or SQL syntax or... ?
      >
      > Regards,
      > Bill K.[/color]


      Comment

      • Bill Karwin

        #4
        Re: mysql_fetch_stm t

        Ike wrote:[color=blue]
        > I think its in libmsyq.dll[/color]

        Can you share with us where you heard about "mysql_fetch_st mt" and what
        you suppose it does? I am not finding anything by that name in the
        source code, the documentation, or Google. ;-)

        Regards,
        Bill K.

        Comment

        • Ike

          #5
          Re: mysql_fetch_stm t

          Hi Bill,

          I am a developer who has subcontracted some work out having to do with
          interfacing to MySQL to another database. If I use a libmysql.dll from MySQL
          <5.0, I get errors saying, "Procedure entry point mysql_stmt_fetc h," not
          found. With >5.0, I dont have these problems. Evidently this is
          undocumented, or an internal function that gets called somehow. -Ike

          "Bill Karwin" <bill@karwin.co m> wrote in message
          news:cvestm02c7 6@enews1.newsgu y.com...[color=blue]
          > Ike wrote:[color=green]
          > > I think its in libmsyq.dll[/color]
          >
          > Can you share with us where you heard about "mysql_fetch_st mt" and what
          > you suppose it does? I am not finding anything by that name in the
          > source code, the documentation, or Google. ;-)
          >
          > Regards,
          > Bill K.[/color]


          Comment

          • Bill Karwin

            #6
            Re: mysql_fetch_stm t

            Ike wrote:[color=blue]
            > Hi Bill,
            >
            > I am a developer who has subcontracted some work out having to do with
            > interfacing to MySQL to another database. If I use a libmysql.dll from MySQL
            > <5.0, I get errors saying, "Procedure entry point mysql_stmt_fetc h," not
            > found. With >5.0, I dont have these problems. Evidently this is
            > undocumented, or an internal function that gets called somehow. -Ike[/color]

            Woops! I don't know what I was talking about before. I must have made
            a typo when I was searching. Sorry about that.

            mysql_stmt_fetc h() is indeed an API call:


            According to that page, mysql_stmt_fetc h() was added in MySQL 4.1.2. So
            if you use an older release of MySQL, the function apparently doesn't exist.

            Regards,
            Bill K.

            Comment

            • Ike

              #7
              Re: mysql_fetch_stm t

              Yes, but I see the generally available stable version is still only 4.1.10!

              "Bill Karwin" <bill@karwin.co m> wrote in message
              news:cvj1gr02pi e@enews2.newsgu y.com...[color=blue]
              > Ike wrote:[color=green]
              > > Hi Bill,
              > >
              > > I am a developer who has subcontracted some work out having to do with
              > > interfacing to MySQL to another database. If I use a libmysql.dll from[/color][/color]
              MySQL[color=blue][color=green]
              > > <5.0, I get errors saying, "Procedure entry point mysql_stmt_fetc h," not
              > > found. With >5.0, I dont have these problems. Evidently this is
              > > undocumented, or an internal function that gets called somehow. -Ike[/color]
              >
              > Woops! I don't know what I was talking about before. I must have made
              > a typo when I was searching. Sorry about that.
              >
              > mysql_stmt_fetc h() is indeed an API call:
              > http://dev.mysql.com/doc/mysql/en/mysql-stmt-fetch.html
              >
              > According to that page, mysql_stmt_fetc h() was added in MySQL 4.1.2. So
              > if you use an older release of MySQL, the function apparently doesn't[/color]
              exist.[color=blue]
              >
              > Regards,
              > Bill K.[/color]


              Comment

              • Bill Karwin

                #8
                Re: mysql_fetch_stm t

                Ike wrote:[color=blue]
                > Yes, but I see the generally available stable version is still only 4.1.10![/color]

                Yes, but 10 is greater than 2.

                4.1.2 was released 2004-05-28.
                4.1.10 was released 2005-02-12.

                (see http://dev.mysql.com/doc/mysql/en/news.html)

                Regards,
                Bill K.

                Comment

                • Ike

                  #9
                  Re: mysql_fetch_stm t

                  Ahhh, right-toe. Thanks Bill! -Ike

                  "Bill Karwin" <bill@karwin.co m> wrote in message
                  news:cvlb3g02mr l@enews4.newsgu y.com...[color=blue]
                  > Ike wrote:[color=green]
                  > > Yes, but I see the generally available stable version is still only[/color][/color]
                  4.1.10![color=blue]
                  >
                  > Yes, but 10 is greater than 2.
                  >
                  > 4.1.2 was released 2004-05-28.
                  > 4.1.10 was released 2005-02-12.
                  >
                  > (see http://dev.mysql.com/doc/mysql/en/news.html)
                  >
                  > Regards,
                  > Bill K.[/color]


                  Comment

                  Working...