ID:               16277
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Feedback
+Status:           No Feedback
 Bug Type:         MSSQL related
 Operating System: NT4
 PHP Version:      4.1.2
 New Comment:

No feedback was provided for this bug for over 2 weeks, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".


Previous Comments:
------------------------------------------------------------------------

[2002-12-07 01:52:50] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-latest.zip



------------------------------------------------------------------------

[2002-03-26 08:45:52] [EMAIL PROTECTED]

RTFBR ;) it is MS SQL, not mySQL

------------------------------------------------------------------------

[2002-03-26 08:01:58] [EMAIL PROTECTED]

RTM! You can only run one query per call to mysql_query()!

------------------------------------------------------------------------

[2002-03-25 22:49:13] [EMAIL PROTECTED]

I am creating tables and indexes in a few places.  To make life a
little easier I want to create a table and it's indexes in one go.

The following code fails:
----
$queries[0]["query_string"]="CREATE TABLE objects (
        [id] integer IDENTITY (1,1) PRIMARY KEY,
        [type] varchar(16) DEFAULT '' NOT NULL,
        [object] text,
        [vtype] varchar(16) DEFAULT '' NOT NULL,
        [lastchanged] TIMESTAMP);
CREATE INDEX objects_lastchanged ON objects (lastchanged);";

$queries[1]["query_string"]="CREATE TABLE nodes (
        path varchar(127) DEFAULT '' NOT NULL PRIMARY KEY,
        parent varchar(127) DEFAULT '' NOT NULL,
        object numeric(11) DEFAULT '0' NOT NULL,
        priority numeric(11) DEFAULT '0' NOT NULL
);";

while ((list($key, $query)=each($queries)) && (!$error)) {
        echo $query["query_string"];
        $exec=mssql_query($query["query_string"]);
}

----

But if I separate out the create index into a separate query it works
fine.

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=16277&edit=1

Reply via email to