Tagged Questions
3
votes
4answers
241 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
300 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
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
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
45 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
87 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
62 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
103 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
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
238 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
395 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 ...