[drupal-devel] Re: Improving db_query()
Gerhard Killesreiter
killesreiter at physik.uni-freiburg.de
Sun Feb 20 18:29:58 UTC 2005
On Sun, 20 Feb 2005, Gerhard Killesreiter wrote:
> On Sun, 20 Feb 2005, Gerhard Killesreiter wrote:
>
> > Now we will get complaints about db queries that look like these:
> >
> > db_query("INSERT INTO {node} (". implode(", ", $k) .") VALUES(". implode(", ", $s) .")", $v);
> >
> > db_query("UPDATE {node} SET ". implode(', ', $q) ." WHERE nid = '$node->nid'", $v);
> >
> > The $node->nid in the last one is easy to fix, but the implodes for SET
>
> Actually, we cannot do the simple change this to
>
> db_query("UPDATE {node} SET ". implode(', ', $q) ." WHERE nid = %d", $v, $node->nid);
>
> because if we have an array as first argument, the rest of the arguments
> is discarded.
$args = array_merge(array($query), $args[1], array_slice($args, 2));
instead of
$args = array_merge(array($query), $args[1]);
in db_query would fix this.
> > or VALUES aren't unless we simply assume that all fields need to be
> > updated/inserted. This would be possible in this case (and require some
> > additional changes for the update case) but not in other cases where
> > similar constructs are used.
> >
> > The question is: can we extend our db wrapper to support a syntax like
>
> I've some ideas here, but while implementing them, I ran across the
> following code in node_save:
[...]
> That is, we treat each field as a string although there are numeric
> fields in $fields (changed, uid, etc.). Why isn't that a problem? I'd at
> least expect postgreSQL to choke at this. I'd appreciate some feedback.
If this is not a problem, the function in the attached scriopt could be
used to update db_query().
Cheers,
Gerhard
-------------- next part --------------
A non-text attachment was scrubbed...
Name: test.php
Type: application/x-httpd-php
Size: 1298 bytes
Desc:
Url : http://drupal3.drupal.org/pipermail/development/attachments/20050220/2d556f73/test.php
More information about the drupal-devel
mailing list