|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-10 09:15 UTC] cox@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 06:00:01 2025 UTC |
PEAR's implementation of sequences does not allow cross-database sequences for DBMSes which allow x-db queries. For example, with MySQL, cross-database queries are allowed, but one can't do $new_id = $SQL->nextId("database2.table"); because the dot (.) in sequence name is translated into underscore (_), which results in sequence name of "database.database2_table_seq", which is NOT the intended result.