Git Product home page Git Product logo

Comments (7)

usmanhalalit avatar usmanhalalit commented on August 19, 2024

Can you please test with MySQL?

from pixie.

paamayim avatar paamayim commented on August 19, 2024

I've now tried with mysql, with the same result, a return of 0.

The following code is:

$config = array(
    'driver'    => 'mysql', // Db driver
    'host'      => 'localhost',
    'database'  => '****',
    'username'  => '****',
    'password'  => '****',
    'charset'   => 'utf8', // Optional
    'collation' => 'utf8_unicode_ci', // Optional
    'prefix'    => '', // Table prefix, optional
    'options'   => array( // PDO constructor options, optional
        PDO::ATTR_TIMEOUT => 5,
        PDO::ATTR_EMULATE_PREPARES => false,
    ),
);

new \Pixie\Connection('mysql', $config, 'db');
$count = db::table('ia')->count();
echo $count;

The table consists of one row.

Best

from pixie.

paamayim avatar paamayim commented on August 19, 2024

Sorry for the waste of time. The issue was that I had forced PDO::FETCH_NUM in Pixie/QueryBuilder/QueryBuilderHandler.php on line 50 in order to get array results; and the count function is hard coded for objects.

from pixie.

usmanhalalit avatar usmanhalalit commented on August 19, 2024

Should be fixed, thanks for reporting.

from pixie.

bkielbasa avatar bkielbasa commented on August 19, 2024

I have the same problem. Here is my code:

public function getRecruitedQuery()
{
    return \QB::table('user')
        ->where('typ', UserType::W)
        ->where('edycja', _EDYCJA)
        ->where('status', WStatus::RECRUITED);
}

and when I try to count the results

$recruitedCount = $wRepository->getRecruitedQuery()->count();

I receive error:

Fatal error: Cannot use object of type stdClass as array in /path/to/vendor/usmanhalalit/pixie/src/Pixie/QueryBuilder/QueryBuilderHandler.php on line 258

I had to downgrade PIxie to commit 9555c41 to make it working back.

from pixie.

marc937 avatar marc937 commented on August 19, 2024

Pull request #87 should correct it.

from pixie.

bkielbasa avatar bkielbasa commented on August 19, 2024

I can confirm that if fixes the issue

from pixie.

Related Issues (20)

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.