Git Product home page Git Product logo

grumpypdo's Issues

Non-array attributes

Expected Behavior

I expect the query to work

Actual Behavior

The query doesn't work :(

Steps to Reproduce the Problem

  1. $pdo = new GrumpyPDO($host, $user, $pass, $db, PDO::CASE_LOWER)

Specifications

Saw your project on Codereview and was creeping looking for a pull request for Hacktoberfest but I don't see anything I can do.. I did notice this little issue tho, if a non-null, non-array value is passed to the constructor for the $attributes parameter your code won't catch it and PDO will end up throwing an error.

Problem is

if($attributes == NULL && !is_array($attributes)) {

should be

if($attributes == NULL || !is_array($attributes)) {

which should really just be

if(!is_array($attributes)) {

cheers!

Error on query.

Expected Behavior

Propery query returned

Actual Behavior

Error: Internal Server Error PDO::query(): SQLSTATE[HY000]: General error: constructor arguments must be passed as an array

Steps to Reproduce the Problem

  1. Run a query (all()) with no variables; $facilities = $db->all("SELECT uid, name FROM rc_facilities");

native functions

Expected Behavior

How do I call the native member functions of PDO Class, such as lastInsertId()?

Add support for PostgreSQL

I will actually do this in my spare time, if and only if you have good test code coverage already.

EDIT: Ooops. Zero tests. Good luck :-/

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.