Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Truncated Messgaes on Punaweb?
#1
I tried to post a long message... however it got truncated.

Then I tried to re-post it and it was also truncated.

Has anyone else had this problem on punaweb?



-------
My Blog
Reply
#2
post the message and lets take a look at it [Wink]



Transplanted Texan
"I am here to chew bubble gum and kick some *** ... and I'm all out of bubble gum"
-----------------------------------------------------------
I do not believe that America is better than everybody else...
America "IS" everybody else.
The Wilder Side Of Hawaii
Reply
#3
I did three times and kept "garbaging it" because it didn't make sense where it was being truncated. I no longer have it stored in my cache and just shortened the message.

It was in the H-130 and Naeole thread up top.

-------
My Blog
Reply
#4
LOL... that was a joke...

are you typing it in each time or pasting it in?


Transplanted Texan
"I am here to chew bubble gum and kick some *** ... and I'm all out of bubble gum"
-----------------------------------------------------------
I do not believe that America is better than everybody else...
America "IS" everybody else.
The Wilder Side Of Hawaii
Reply
#5
If I can recall correctly...

I first typed it in under the "quick reply box" and I guess I didn't have my password correct.

So I went back through my cache and copied and pasted what I had previously wrote to a word document.

Then used a normal "reply" and copied and pasted from the word document.

I then hit preview.... Entire message was there... I then went to publish... Message was truncated. (Tried two or three times)

Finally gave up and shortened my message.

-------
My Blog
Reply
#6
What forum and thread?


Transplanted Texan
"I am here to chew bubble gum and kick some *** ... and I'm all out of bubble gum"
-----------------------------------------------------------
I do not believe that America is better than everybody else...
America "IS" everybody else.
The Wilder Side Of Hawaii
Reply
#7
Never mind, found it.


Transplanted Texan
"I am here to chew bubble gum and kick some *** ... and I'm all out of bubble gum"
-----------------------------------------------------------
I do not believe that America is better than everybody else...
America "IS" everybody else.
The Wilder Side Of Hawaii
Reply
#8
Darn, I thought you were giving "truncated massages". Sounded interesting.
Reply
#9
In a data base you have to dictate when you design the schema how you want the fields to work to accommodate the size and type of date to be stored.
There is
TINYINT
A very small integer
The signed range is –128 to 127. The unsigned range is 0 to 255.

SMALLINT
A small integer
The signed range is –32768 to 32767. The unsigned range is 0 to 65535

MEDIUMINT
A medium-size integer
The signed range is –8388608 to 8388607. The unsigned range is 0 to 16777215

INT or INTEGER
A normal-size integer
The signed range is –2147483648 to 2147483647. The unsigned range is 0 to 4294967295
CHAR
A fixed-length string that is always right-padded with spaces to the specified length when stored
The range of Length is 1 to 255 characters. Trailing spaces are removed when the value is retrieved. CHAR values are sorted and compared in case-insensitive fashion according to the default character set unless the BINARY keyword is given

VARCHAR
A variable-length string. Note: Trailing spaces are removed when the value is stored (this differs from the ANSI SQL specification)
The range of Length is 1 to 255 characters. VARCHAR values are sorted and compared in case-insensitive fashion unless the BINARY keyword is given

TINYBLOB,
TINYTEXT

A BLOB or TEXT column with a maximum length of 255 (2^8 - 1) characters

BLOB,
TEXT

A BLOB or TEXT column with a maximum length of 65535 (2^16 - 1) characters

MEDIUMBLOB,
MEDIUMTEXT

A BLOB or TEXT column with a maximum length of 16777215 (2^24 - 1) characters

LONGBLOB,
LONGTEXT

A BLOB or TEXT column with a maximum length of 4294967295 (2^32 - 1) characters

If the post has more data than the field can except it will truncate it.

Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)