How to increase text editor max chars length- (Max 65535 characters)
I have a text data type coulumn (sqlserver) in one of the table.The content length is nearly 100000 characters. I was trying to make changes to the content in HeidiSql-Texteditor.It's not allowing me to make changes and it's saying 65535 characters (Max 65535). Is there a way to increase this size...?
Code modification/commit
b337919
from ansgar.becker,
10 years ago,
revision 9.1.0.4905
TEXT data type has a maximum length of 65k for MySQL only. Introduce other values for MSSQL and PostgreSQL. See http://www.heidisql.com/forum.php?t=17747
But, The max length of the text data type in Sqlserver is not 65535. I'm able to see full data in the editor but I can't add more characters. It's allowing to delete content.
https://msdn.microsoft.com/en-us/library/ms187993(v=sql.100).aspx
https://msdn.microsoft.com/en-us/library/ms187993(v=sql.100).aspx
As stated here, PostgreSQL's "TEXT" data type supports "unlimited" (!) text length :)
Let me check what HeidiSQL detects there. Surely some glitch in my detection logic.
Let me check what HeidiSQL detects there. Surely some glitch in my detection logic.
Code modification/commit
2459251
from ansgarbecker,
10 years ago,
revision 9.1.0.4922
SUBSTR() in PostgreSQL seems 1-based, not 0-based. Fixes non-working TDBQuery.EnsureFullRow and TDBQuery.HasFullData. See http://www.heidisql.com/forum.php?t=17747
Should be fixed in r4922. Please update and test yourself. For me it fixes the issue.
SUBSTR() seems to be 1-based, not 0-based, in PostgreSQL. I had assumed 0-based and so the partial content did not have 256 characters but 255, and so the "load-full-row" logic did not detect it as incomplete.
SUBSTR() seems to be 1-based, not 0-based, in PostgreSQL. I had assumed 0-based and so the partial content did not have 256 characters but 255, and so the "load-full-row" logic did not detect it as incomplete.
Hi,
it seems we have new strange problem (after upgrading from 4905 to 4922)
i can't see no any data - because "sql query" has few errors
thanks!
it seems we have new strange problem (after upgrading from 4905 to 4922)
i can't see no any data - because "sql query" has few errors
thanks!
1 attachment(s):
This is an error due to a recently modified query for getting table indexes.
Here's the forum thread for that topic. Let's discuss that there.
Here's the forum thread for that topic. Let's discuss that there.
Code modification/commit
4592927
from ansgarbecker,
10 years ago,
revision 9.1.0.4925
Attempt to fix query for detecting table indexes on PostgreSQL. See http://www.heidisql.com/forum.php?t=17747
Please login to leave a reply, or register at first.