Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
1k views

Do MySQL prepared queries provide a performance benefit for once-per-session queries?

According to the documentation, a prepared query provides a significant performance benefit if you're running a query multiple times because the overhead of the MySQL server parsing the query only ...
3
votes
6answers
3k views

Replacement for PEAR: MDB2 on PHP 5.3

I've been using pear packages in php for years. I'm in the process of upgrading/moving a sites that uses the MDB2 pear package and it has not been updated for PHP 5.3.X. In 5.3, MDB2 is returning ...
1
vote
1answer
62 views

External database access in Wordpress plugin

I have developped a small Wordpress plugin that filter the page content setup thru a add_filter('the_content'...) call. My filtering function does include PHP files that makes external database calls ...
1
vote
2answers
353 views

Connecting to MS SQL from PHP on IIS using PEAR MDB2

Sorry to have to ask this here; php.net just seems to be full of exceptions and excuses regarding this. I'm running IIS 6.0 with PHP 5.3.6. I've got MDB2 installed and working (even with a ...
1
vote
5answers
218 views

Preventing SQL injection in PHP

I'm trying to figure out how to prevent sqlinjection, I wrote this basic function : function antiInjectie($inputfromform){ $temp = str_replace("'", "`",$inputfromform); $temp = ...
1
vote
1answer
247 views

Connecting to MDB2 in PHP object

$dsn="mysql://$db_username:$db_password@$db_hostname/$db_database"; global $mdb2; $mdb2=MDB2::connect($dsn); if (PEAR::isError($mdb2)) { die($mdb2->getMessage()); } I do this to connect to my ...
1
vote
1answer
347 views

Getting MDB2 to work with sqlite3 via pdo

I am using MDB2_Driver_pdoSqlite to access a sqlite3 database with PEAR. I am able to connect to the database and display a list of tables with listTables(), but when I try to run the mdb2 function ...
1
vote
1answer
486 views

How to make several tests using MDB2 with PHPUnit DataBase?

I use PHPUnit DataBase to test some class using MDB2. All is well, since I encounter the second test, which returns an error: Caught exception: Object of class MDB2_Error could not be converted ...
0
votes
0answers
11 views

Insert blob data into mysql using MDB2 in php

Can anybody help me to insert blob data in Mysql using MDB2 through php ? I want to insert file into database using MDB2. MBD2 setup is works fine.
0
votes
0answers
20 views

how to install MDB2 for pear on window 7? [closed]

I have been install mysql、php、pear, and I dont konw how to install MDB2 on win7. Should I install Wamp first?
0
votes
0answers
29 views

mdb2 not found - Jethro Pastoral Ministry Manager

I was trying to install Jethro Pastoral Ministry Manager. When i am running installation i am getting "DB2 Library not found on the server.". I search but couldnot get how to run and install it in XP
0
votes
0answers
34 views

Error installing MDB2 under Pear

I am trying to install pear's mdb2 package so I can use mail queue. I enter the following command and get the error below. Any suggestions? C:\wamp\bin\php\php5.3.4>pear install MDB2 No releases ...
0
votes
0answers
22 views

PEAR MDB2 seek() & count() in MDB2_Iterator

I am having trouble with MDB2_Iterator, this is an old project which is being moved to a new server. The function in MDB2_Iterator for count() is below: public function count() { if ...
0
votes
0answers
19 views

how to insert in oracle blob column using pear - mdb2 [closed]

Can someone provide me a example of inserting file in blob column of oracle using pear-mdb2.
0
votes
0answers
31 views

using php pear mdb2 with queris having out parameters

How to get return values coming from query in PHP-PEAR MDB2. I have insert query in oracle with returning into clause which returns value of autoincrement fields. I want to do something like ...
0
votes
2answers
45 views

mdb2 error with integer = NULL in prepare statement

I have an annoying problem with mdb2 while trying to insert empty values in an integer field. $query = $conn->prepare("INSERT INTO enquiries (type, idvenue, cname, fname, lname, phone, email, ...
0
votes
1answer
23 views

Advantages of using MDB2 over straight database functions like mysql_query?

What are the advantages (and disadvantages) of using the Object-Oriented database library MDB2 over the straight database functions that come with PHP?
0
votes
1answer
29 views

MDB2/MySQL, multiple connections

I have a script that for the most part interacts with one mysql database. However, when a certain function is called, I am now wanting to do an if{} and in the case of true connect to another mysql ...
0
votes
0answers
12 views

MS Access 2000 query help - need a query to export tables into CSV, am using PHP/Debian/CLI

I am working on code that will accept an MDB file and export it to CSV or SQL format that will be later consumed by MySQL. The problem is that code will reside on a shared linux hosting environment ...
0
votes
1answer
59 views

MDB2 quotes — null values?

According to the PEAR MDB2 documentation, I can optionally quote or not quote values using the third parameter: $mdb2->quote($val1, "text", true) $mdb2->quote($val2, "integer", false) Is there a way ...
0
votes
1answer
103 views

>Call to a member function exec() on a non-object< when I try to call PEAR MDB2 class

I have a problem which I seem unable to solve on my own, although the script is kind of simple... I simply want to write sth. in a MySQL database (auto_increment id) with the following script: ...
0
votes
0answers
68 views

Rewrite a query to a suitable COUNT query using PHP?

I use the PEAR Pager class and its MDB2 wrapper to split a customer list into pages. It has worked nice for a long time, but now I have added a subquery in my SELECT, and the class started grabbing ...
0
votes
1answer
62 views

how to include “order by” in Pear MDB2 autoexecute select statments

I'm using Pear MDB2's "Extended" module to have it automatically generate and execute SQL select statements. The help document is here: ...
0
votes
0answers
72 views

MDB2 update statement problem

This is really driving me nuts. I am using PEAR MDB2 and i am more than happy with it. I have this code: $_POST['display_title'] = strip_tags($_POST['display_title']); $_POST['description'] = ...
0
votes
0answers
52 views

How to set a foreign key?

I am doing a project which is using MDB2 implementation. I wanna to set a foreign key on xml schema file. There are only 3 tables: student, course, and enrollment where enrollment is serve as a ...
0
votes
2answers
47 views

Making SQL calls from inside a function

I've got a PHP function (call it funcA) that is used in multiple places, so I placed funcA (and some related functions) in a separate file that is required in other PHP files. funcA makes numerous ...
0
votes
1answer
105 views

Warnings while installing PEAR modules, no results

Running IIS 6, fastCGI, PHP 5.3.6 with PEAR MDB2. I've installed this setup multiple times with no problem, but as of a couple of days ago when newly installing PHP on servers (this happened on more ...
0
votes
1answer
159 views

how to get SQL generated by Pear MDB2 without executing it?

I'm working with Pear MDB2 with PHP 5.3. I'm coding a project that updates a DB and before I let it start changing data, I'd like to see what the SQL queries generated by autoPrepare() and execute() ...
0
votes
1answer
191 views

how to debug the cause of problem using pear mdb2

<?php include("PEAR/MDB2.php"); $dsn = 'mysqli://root@localhost/heart_hugger'; $options = array( 'debug' => 2, 'result_buffering' => false, ); $mdb2 =& ...
0
votes
1answer
65 views

Error with cpanel migrated account (PEAR/MDB2)

I had a site in a cpanel server working well but when I have migrated it to a new one, I have a MDB2 error related. Fatal error: Call to a member function tableInfo() on a non-object in ...
0
votes
1answer
61 views

MDB2 placeholder shorthand with DB->query

I just realized that the pear:DB extension is deprecated and I'm working on updating some scripts to MDB2. I'm a little disappointed how cumbersome the placeholder arrangement is. Am I missing ...
0
votes
0answers
171 views

MDB2 query inside fetchRow

I have one problem with MDB2 database abstract layer, I need to execute and fetch query inside query: $mdb2 = MDB2::singleton($_config["db"], $_config["mdb_opt"]); ...
0
votes
2answers
125 views

What do I need to do, if anything, to ensure $mdb2->lastInsertID() returns the auto-increment value for that connection?

I've made the switch recently from SQL Server to MySQL, and I can't find a solid enough answer to this question anywhere: I'm using PHP, MySQL, and the InnoDB table engine on the tables I need to ...
0
votes
0answers
84 views

ezSQL vs MDB2 for Performance, Compability?

Can you tell me, what are differences between ezSQL and MDB2? For example, performance, compability? I found this link :http://forum.atlantaphp.org/index.php/m/682/ , but I need to more source ...
0
votes
1answer
99 views

Are there any real advantages to upgrading to PEAR::MDB2 from PEAR::DB?

We have a very large legacy codebase and I was wondering if there's any REAL advantage to upgrading to MDB2. Thoughts? Speed? Readability? Fewer bugs? Anything at all? Thanks
0
votes
0answers
66 views

Why an EXPLAIN statement is generated when doing a simple query?

I am using MDB2 to make query to my MySQL database but when I query the database, the MySQL log trace 2 statements: the first one is an explain statement and the second is my query. Here is the code: ...
0
votes
0answers
80 views

MDB2 abstraction - JOIN and SUBSELECT syntax, do they port well?

I've been doing some research in terms of db abstraction, and no matter how much of mdb2 documentation I read, or how many google searches I make, I cannot find anyone talking about the JOIN syntax. ...
0
votes
0answers
101 views

Help me understand how JanRain's OpenID library works with PEAR SQL stores (in my case, PEAR MDB2)

Update: Huh. Well I suppose thinking about it in the form of a question helped me track it down (it was Auth_OpenID_MDB2Store->createTables, which needs to be called manually, evidently?). ...
0
votes
3answers
206 views

Character encoding issues: MySQL 5.0 + PHP 5.2

I have a MySQL database with an InnoDB table containning utf8_general_ci varchar fields. When I fetch them through PHP (via PEAR::MDB2) and try to output them (via Smarty), I get ??? symbols. I would ...
0
votes
1answer
92 views

Modifying a class to encapsulate instead of inherit

The codebase I've been handed to work with features a DB class that inherits from MDB2. This forms the basis for the MVC framework in use (a custom built affair) and the models in turn inherit from ...
0
votes
1answer
51 views

MDB2 autoprepare problem

I am using mdb2 for my website and i ran into a problem. I have an order_no field in my table that i would like to have a default value like LAST_INSERT_ID() + 1. Is there a datatype that can be set ...
0
votes
1answer
90 views

MDB2 pear windows instalation

I am looking for a guide for installing and using MDB2 pear on my system. i use iss7 and windows vista.... I read the manual but I didn't understand too much...
0
votes
1answer
291 views

Pear MDB2 class and raiserror exceptions in SQL Server

in SQL Server it's possible to raise an error with raiserror(). I want to use a severity, which doesn't interrupt the connection. This error is raised in a stored procedure. In SQL Management Studio ...
0
votes
3answers
827 views

MDB2, Pear, Mysql error

I have PEAR, MDB2 and Mysql Driver installed however I keep getting: Fatal error: Call to undefined function: MDB2_Driver_mysql::_isNewLinkSet(). in /home/**/PEAR/MDB2.php on line 1937. The Server ...
0
votes
1answer
345 views

MDB2 With SQL Express 2008

So basically here's my problem. I'm looking for a solution to allow us to connect with SQL Express 2008, while still using MDB2 as our database abstraction layer. I need something like this, mainly ...
0
votes
1answer
111 views

Complex SQL query… names of returned variables

Excuse me for what I'm sure is an elementary question for most of you, but I have an issue with table columns from separate tables having the same name as one another, and trying to select from both ...
0
votes
2answers
361 views

Using MDB2 and MySQLi together (Good or bad?)

I want to use the PEAR Mail_queue package which requires the PEAR MDB2 package for database abstraction. I currently use MySQLi for all my database queries and dont really desire using MDB2. Would ...
0
votes
1answer
249 views

Cannot redeclare class mdb2_error in Pear MDB2 package

I haven't install pear in my PC,instead I download the packages and unzip them to "libs" dictionary in my web-app.the structure of dictionary of my web-app is roughly like this: web-app +-/backend ...
0
votes
2answers
179 views

Pear Log MDB2 message length and errors

I recently set up a SQL logging framework with PEAR, and everything was working fine. However, I thought that the default length of the message field (VARCHAR 200) was a little short, so I changed my ...
0
votes
3answers
222 views

How can I get all field values from a query with JOINed tables?

I have this elementary query: SELECT d.description, o.code FROM order_positions AS o LEFT JOIN article_descriptions AS d ON (o.article_id = d.article_id) WHERE o.order_id = 1 and I'm using MDB2 ...

1 2