Code Monkey home page Code Monkey logo

Comments (6)

TheTechsTech avatar TheTechsTech commented on June 3, 2024

Not sure, need more info, could be:

$db->query("CREATE TEMP TABLE temp.history( . . . )");

You could remove "TEMP". see https://database.guide/create-temporary-table-sqlite/
Or do:

$db->query("CREATE TABLE IF NOT EXISTS temp.history( . . . )");

How is the db connection setup?

from ezsql.

mbunal avatar mbunal commented on June 3, 2024

exact query is:

$db->query("DROP TABLE IF EXISTS temp.history");
$db->query("CREATE TEMP TABLE temp.history(s, id, oid, oli, p, q, qq, c, ca, t, ib, im, ibm)");
foreach ($history as $h)
{
	$db->insert('temp.history', $h);
}

connection is:

use ezsql\Database; // Load ezSQL Database Class
$db = Database::initialize('sqlite3', ['./database/', 'b.sqlite3']);
$db->connect();

from ezsql.

TheTechsTech avatar TheTechsTech commented on June 3, 2024

What's $history contents?

You should check see if the actual "$db->query(...)" returns false, which indicates not successful/error.

Or echo $db->getLastError(); after query call.

The warning line 441 referenced is actually for some other error logged.

Also your create table is not valid as you have it. No column types, primary keys, etc...

from ezsql.

mbunal avatar mbunal commented on June 3, 2024

$history is:

 ["s"]=> string(7) "ALLINONE" 
 ["id"]=> int(37544933) 
 ["iod"]=> int(620365953) 
 ["oli"]=> int(-1) 
 ["p"]=> string(10) "214.19500000" 
 ["q"]=> string(11) "942.45473600" 
 ["qq"]=> string(12) "5352.56700000" 
 ["c"]=> string(10) "12.67415903" 
 ["ca"]=> string(3) "WHATNEXT" 
 ["t"]=> int(1747210393384) 
 ["ib"]=> bool(true) 
 ["im"]=> bool(true) 
 ["ibm"]=> bool(true)

from ezsql.

TheTechsTech avatar TheTechsTech commented on June 3, 2024

You need to supply full sample,, so far what you have is not correct.

Why you doing a for loop on $history array?
That $db->insert(...) should fail the way you have it, each step thru it's not filling all columns.

Look over our Tests script.

public function testInsert()

public function testQuery()

from ezsql.

TheTechsTech avatar TheTechsTech commented on June 3, 2024

I am assuming your issue is resolved now, reopen if not.

from ezsql.

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.