Posted by Mark Knochen on 11/18/93 11:44
>>; Valid range 0 - 2147483647. Default = 4096.
>>mssql.textlimit = 4096
>>
>>; Valid range 0 - 2147483647. Default = 4096.
>>mssql.textsize = 4096
>
>
> Setting these two using ini_set() prior to making the connection also
> works.
>
The CREATE TABLE was:
CREATE TABLE modul (
ID int NOT NULL IDENTITY ,
"text" text NOT NULL default '',
PRIMARY KEY (ID)
);
I set these settings:
ini_set("mssql.textlimit",409600);
ini_set("mssql.textsize",409600);
But nothing works.
I cant get the full text from the table ...
Mark
[Back to original message]
|