Questions tagged [longtext]
143 questions
0
votes
0 answers
Drop cat text/Image alignment with a long text in Flutter
in this design i want one long text field and other side one webview ,text fiel and webview is in one row form and text wrap automatically
left side long text and other side one web view option ,but text automatically wrap
how to build that…

Zulfi
- 1
0
votes
1 answer
How do I update a long text field in from a long text field in another table without truncating
How do I update a long text field in from a long text field in another table without truncating fields that exceed 256 characters?
I have two tables.
tbl_current_text with two fields: system_id, current_system_text
tbl_new_text with two fields:…

Ken321
- 1
0
votes
0 answers
How to get data from a LONGTEXT to perform string operations
I have some MariaDB code, which I'm fairly new to. I'm a seasoned MSSQL developer, however. I have a script with a variable which I'm setting to what will eventually be the contents of a file. This it is 51k characters long and ends up being a…

Mark Roworth
- 409
- 2
- 15
0
votes
1 answer
KivyMD - Button wrap text
Somehow I can't find out if it is possible to make long text in a button wrap in KivyMD.
In classic Kivy, this is done with "text_size: self.width, None"
But in KivyMD no matter what I do the result is still one line that doesn't end anywhere.
Does…
0
votes
1 answer
writeTextElement() of QXmlStreamWriter crashed when writting the content of a big file
Here is the qt code that crash:
Writing the content of a 130MB binary file will crash, but writing a 2MB binary file will not.
Is there any solution for writeTextElement to write big file content? Thanks
env: qt opensource 4.8.7
Visual Studio…

Ming
- 379
- 1
- 6
- 20
0
votes
0 answers
How to insert a long text in a multirow on overleaf?
Helle,
I would like to create a table wit my 2 first row being multirows with one filled with a long text, followed by a 2 column's row.
I don't have any issue to create the multirows or insert the long text in the typical columns but when I use the…
0
votes
1 answer
Changing column from longtext to mediumtext taking over 1 hour
I am storing html in my database as text, and initially I used longtext because I just assumed it was what I needed. I queried my html and urls from my database using the full text and it took a long time and memory so I thought it was the large…
0
votes
1 answer
MariaDB Remove text from record
I have longtext data in data column as show by image, how to remove
{"current_id_position":"8861","targetted_id_position":"","count_new_technical":"0"}
for all record in 1 query? I just need number inside targetted_id_position
Thanks, hope u're…

slvhxia
- 47
- 6
0
votes
1 answer
Longtext data to PHP Array
I inserted the array data in MySql table by encoding to JSON using json_encode($arrayData), but in longtext data type, not in JSON data type.
So I am not able to do json_decode($Db_Data_Stored_In_Longtext) for getting back the $arrayData while…

anees ma kader
- 87
- 1
- 1
- 10
0
votes
0 answers
MySql/MariaDB longtext truncated and max_allowed_packet
I have a problem with MariaDB with a longtext field. It is limited to 32770 chars and there is no way to grow it up.
SELECT CHAR_LENGTH(longtext_column) from table where id = x;
I edited my cnf like this:
[mysqld]
max_allowed_packet = …

JuliSmz
- 996
- 1
- 12
- 26
0
votes
1 answer
Dompdf Why When you go to second page the text goes to the left
I have a simple pdf that I created with dompdf div and css.
#menu{
width:600px;
float:left;
margin-top:10px;
font-weight: bold; }
#Istarih{ float:left; width:180px; margin-right:0px;…

orhanss
- 1
- 1
0
votes
1 answer
Release order block via SAP GUI Scripting
I'm able to unblock the outlets by utilizing a SAP GUI script and VBA macros. I need to keep the outlet code(Column a) and status 0(Column B) on an Excel sheet, and then when I click start script, sap will perform the unblocking activities.
Excel…

Leace
- 262
- 1
- 7
- 24
0
votes
1 answer
Show long text in a cell with extra spaces when hovered over
I found multiple answers, but none of them came specifically with "extra spaces" resolution.
So, I have a table with multiple columns and rows. When I have long text in a cell, I have .tablecell: hover CSS to make changes when hovered over: change…

risingstar
- 5
- 3
0
votes
0 answers
How to insert an initial value in column of longtext type in mysql command
This is the default of the table:
desc extender_device;
+-------------------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra…

user3595231
- 711
- 12
- 29
0
votes
0 answers
How do I configure python mysql.connector to convert longtext fields without the bytearray b''
The code currently checks for type(bol)==bytearray, but how can I get it to do the same for longtext columns? I've tried use_pure = true/false as well as raw = true/false. I have mysql-python-connector 8.0.6 installed, running python 3.5.4
it will…

Mat
- 1
- 2