![]() |
Truncated Messgaes on Punaweb? - Printable Version +- Punaweb Forum (http://punaweb.org/forum) +-- Forum: Punaweb Forums (http://punaweb.org/forum/forumdisplay.php?fid=3) +--- Forum: Punatalk (http://punaweb.org/forum/forumdisplay.php?fid=10) +--- Thread: Truncated Messgaes on Punaweb? (/showthread.php?tid=2827) |
Truncated Messgaes on Punaweb? - Guest - 10-23-2008 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 RE: Truncated Messgaes on Punaweb? - Jon - 10-23-2008 post the message and lets take a look at it [ ![]() Transplanted Texan "I am here to chew bubble gum and kick some *** ... and I'm all out of bubble gum" RE: Truncated Messgaes on Punaweb? - Guest - 10-23-2008 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 RE: Truncated Messgaes on Punaweb? - Jon - 10-23-2008 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" RE: Truncated Messgaes on Punaweb? - Guest - 10-23-2008 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 RE: Truncated Messgaes on Punaweb? - Jon - 10-23-2008 What forum and thread? Transplanted Texan "I am here to chew bubble gum and kick some *** ... and I'm all out of bubble gum" RE: Truncated Messgaes on Punaweb? - Jon - 10-23-2008 Never mind, found it. Transplanted Texan "I am here to chew bubble gum and kick some *** ... and I'm all out of bubble gum" RE: Truncated Messgaes on Punaweb? - Greg - 10-23-2008 Darn, I thought you were giving "truncated massages". Sounded interesting. RE: Truncated Messgaes on Punaweb? - Guest - 10-23-2008 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. |