Giter Club home page Giter Club logo

mssql-compat's People

Contributors

frazjp65 avatar hexblot avatar slashbunny avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

mssql-compat's Issues

mssql_select_db not working

Hello
I have to move some legacy code to a new ubuntu system.
Your wrapper is quite convenient to be used, but I found that on my system the function
mssql_select_db is always signaling an error

I have replaced it with mssql_query("USE ".$dbname) which works for me, but this is not very elegant.

mssql_num_rows returns -1

having the next simple code
$result = mssql_query($sql);
echo mssql_num_rows($result); // -1 always
while($row = mssql_fetch_assoc($result)) {
//actual data 3 rows
}

$stmt_index missing in function freeStmt

Hello
I have to move some legacy code to a new ubuntu system.
Your wrapper is quite convenient to be used, but I found that my system issues the following:
Notice: Undefined variable: stmt_index in /usr/local/share/php/mssql-compat/mssql_compat.php on line 318

This is true, there is no $stmt_index in this function:

    public function freeStmt($stmt) {
      $stmt = &$this->getStmtObj($stmt, TRUE);
      unset($this->stmt_pool[$stmt_index]);
      return TRUE;
    }

I guess it shoud be:

    public function freeStmt($stmt) {
      $stmt_index = &$this->getStmtObj($stmt, TRUE);
      unset($this->stmt_pool[$stmt_index]);
      return TRUE;
    }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.