Tagged Questions
The longtext tag has no wiki summary.
3
votes
4answers
240 views
Removing newlines in PHP - but they still show in LONGTEXT in MySQL
Ello chaps.
Ok - cleaning my string like this:
$clean_string = preg_replace("/[\n\r]/"," ",trim($dirty_string));
.. Echo it out to the screen and it works - one lovely big lump of text with no ...
3
votes
1answer
2k views
JPA native query for LONGTEXT field in a MySQL view results in error
I have the following JPA SqlResultSetMapping:
@SqlResultSetMappings({
@SqlResultSetMapping(name="GroupParticipantDTO",
columns={
@ColumnResult(name="gpId"),
...
2
votes
4answers
298 views
Unable to save large text in mysql thru php
$query="INSERT INTO `ARTICLES` (`TITLE`, `BY`, `IN`, `POST`)
VALUES('". $title ."', '". $by ."', '". $in ."', '". $_POST['post'] ."')";
This code is able to save small length text but not large. ...
1
vote
2answers
82 views
Translating longer texts (view and email templates) with gettext
I'm developing a multilingual PHP web application, and I've got long(-ish) texts that I need to translate with gettext. These are email templates (usually short, but still several lines) and parts of ...
1
vote
1answer
103 views
Why does mysqli fetch() return empty results from longtext column?
For some reason mysqli $query -> fetch(); returns blank, the columns that are longtext in my mysql table?
Any ideas? I set the columns to text, it works fine. It also works fine on my WAMP ...
1
vote
1answer
144 views
MySql LongText unselectable with value > 32kb
I use MySql Server 5.1. I have a MySql table with a longtext column. I'm writing a program in C# 2010 using MySql Connector 6.3.1 and I want to select that column in my program using regular linq.
I ...
1
vote
10answers
750 views
storing long text
what is the best way to store long texts (articles) in a database? it doesnt need to be searchable.
i want to allow ppl to read the first chapter of every book in my bookstore. dumping it into a ...
1
vote
2answers
1k views
Trouble with CONCAT and Longtext
The SQL...
UPDATE Threads t
SET t.Content = (
SELECT GROUP_CONCAT(a.Content ORDER BY a.PageID SEPARATOR '<!-- pagebreak -->')
FROM MSarticlepages a
WHERE a.ArticleID = ...
0
votes
3answers
44 views
SQL Error 1406 Data too long for column
I am trying to execute the query below in MySQL but get the SQL error 1406 Data too long for column error every time. The column data type is longtext. Any ideas?
UPDATE `my_db`.`my_table` SET ...
0
votes
1answer
85 views
saving base64 data - row size too large issue
I have 22 database fields of type longtext. If I try saving 12 of the fields with the following data I get the following error:
#1118 - Row size too large. The maximum row size for the used table ...
0
votes
1answer
61 views
Creating a counter for occurrences of lottery numbers in MYSQL longtext column. This may require PHP
I may need PHP or some other language to do this job, though A solution in MYSQL directly is preferred.
I've gotten together a list of the winning lottery numbers for the New York state lottery for ...
0
votes
2answers
69 views
In Android how can I show a very long text (190 words), is there any idea better then textview?
I have a long text, about almost 1000 character including spaces (190 words). I tried to show that on a large textview, but it wasn't that great, didn't look pro, so is there any other idea?
Thanks ...
0
votes
2answers
102 views
What is the disadvantage to using a MySQL longtext sized field when every entry will fit within a mediumtext sized field?
What is the disadvantage to using a MySQL longtext sized field when every entry will fit within a mediumtext sized field?
The reason I am asking is because I have some longtext sized fields and ...
0
votes
0answers
86 views
How to display longtext field without formatting characters
I am running a query to pull out a long text field from a table but would like to display the results without the formatting characters.
For example it is stored as "Created 9/23/2010"
and I would ...
0
votes
1answer
78 views
SQL, Is it bad to concat() log data in longtext field?
I'm building my own authentication system. Right now I have my database setup to log each login timestamp by:
$query = 'UPDATE `users` SET login_log = concat(login_log, ?) WHERE userKey = ? LIMIT 1 ...
0
votes
4answers
236 views
PHP Longtext to display like the user wrote it
I need to know how to display information put in a database longtext field the way it was written.
Like if a user writes in this below:
My life is full of love I fly like
wedding doves I blow passed ...
0
votes
4answers
2k views
Store HTML into MySQL database
I'm trying to store a String which contains HTML in a MySQL database using Longtext data type. But it always says "You have an error in your SQL syntax". I tried to store a normal String and it works.
...
0
votes
1answer
393 views
MySQL field type for a comments field or text area
As the title says, I'm after a good field type for a comments field I have in a table. It will store many characters (as users can continuously add to it) so it's definitely over 255. I looked at ...