Tagged Questions
ezSQL is an open-source PHP database class that features a simplified and concise syntax for calling mySQL, Oracle8/9 / InterBase/FireBird / PostgreSQL / MS-SQL / SQLite / SQLite c++) functions within your PHP script.
3
votes
3answers
188 views
Mysql php class recommendation
I have been using ezSQL for the last few years but feel it is outdated. Though I like the simplicity and I like the file based caching ability with json, for small result sets that is.
So starting a ...
1
vote
4answers
267 views
WHERE - IS NULL not working in SQLite?
Here's a strange one:
I can filter on NOT NULLS from SQLite, but not NULLS:
This works:
SELECT * FROM project WHERE parent_id NOT NULL;
These don't:
SELECT * FROM project WHERE parent_id IS ...
0
votes
1answer
52 views
ezSql with multiple queries
This is question, however:
In a PHP file, I am running an ezSql command (http://justinvincent.com/ezsql):
$_result = $db->get_var("CALL spcheck ('".$_var1."')");
then I have a if ($_result..
...
0
votes
1answer
74 views
invalid data source name with PDO Sqlite
I'm having this error when trying to do a request from a PDO object (with ez_sql) on a sqlite database.
I read here: http://us.php.net/manual/en/ref.pdo-sqlite.php that the db could be empty and that ...
0
votes
1answer
37 views
Using ezSQL functions from another file
Im using ezSQL in my PHP application and I have a problem.
This is my structure
config.php code:
include_once "ez_sql_core.php";
include_once "ez_sql_mysql.php";
$db = new ...
0
votes
1answer
68 views
ezSQL check affected rows
With adodb i checked affected rows like this:
$user_data = get_login_name($user_name, $password);
//0 = id
//1 = username
//2 = password
if (!$myDB->Affected_Rows($user_data[1], $user_data[2])) {
...
0
votes
2answers
67 views
Each row is an object in adodb?
It's possible get each row as an object like in ezSQL?
For example, ezSQL returns(print_r($sql):
Array (
[0] => stdClass Object (
[click_time] => 2011-09-12 17:30:06
...
0
votes
0answers
47 views
ez_sql and custom trigger_error
I am using ez_sql for db abstraction, above it I have my model classes comunicating with DB through ez_sql. I would like to use a custom error handler that would report errors in communication with ...
0
votes
1answer
132 views
$wpdb - what does it return on fail?
I'm not sure whether this question is WordPress specific or is more related to mySQL. I am trying to find out what would be returned if the transaction with the database fails.
In the following ...