37039dd336
Remove outdated details in readme file, and redirect to official help page instead.
2014-11-14 20:33:59 +00:00
aa6ed7d9dd
Fix non working addition of new columns in MySQL. See http://www.heidisql.com/forum.php?t=16948
...
PostgreSQL: Detect all array style types as unknown type, e.g. TEXT[].
2014-11-14 17:09:08 +00:00
0d61d18261
PostgreSQL:
...
* Detect xid type (oid 28) as integer.
* Detect character type (oid 1042) as char, not varchar.
* Detect aclitem[] type (oid 1034) as unknown, not text.
2014-11-13 18:55:11 +00:00
2cc7d823fc
PostgreSQL: Log oid of table columns in TDBConnection.GetCreateCode.
2014-11-13 18:47:59 +00:00
9b397beff0
Pass column or argument name to NativeToNamedColumnType(), as a hint for the user.
2014-11-13 18:41:14 +00:00
eeb571464a
PostgreSQL: Support quoted datatypes in TDBConnection.GetDatatypeByName, coming from TDBConnection.ParseTableStructure. Also, avoid detecting "TEXT[]" data type as TEXT, as SUBSTR() in data tab fails with these.
2014-11-13 18:06:26 +00:00
3793e01bb4
Fix detection of PostgreSQL data type INTERVAL as VARCHAR. See http://www.heidisql.com/forum.php?t=16760
2014-11-13 17:21:07 +00:00
d940f617e2
Support new command line parameter "n", or "nettype", which takes an integer, representing the protocol number (0=mysql tcpip, ...). See http://www.heidisql.com/forum.php?t=16891
2014-11-11 20:53:20 +00:00
04bcfd4437
Prepare upcoming 9.1 release
9.1
2014-11-11 19:35:58 +00:00
7dc73daa6a
Downgrade libmysql to the one from MySQL 5.6.6, in order to have the secure_auth option disabled by default. I can't get MYSQL_SECURE_AUTH disabled for some reason. See http://www.heidisql.com/forum.php?t=16858#p16893 . However, we have still utf8mb4 support (since 5.5.3)
2014-11-11 19:35:10 +00:00
b855d45ab1
Prepare upcoming 9.0 release
9.0
2014-11-10 16:53:37 +00:00
2224acff1c
Update logo in about dialog with shadow
2014-11-10 16:43:11 +00:00
bbe2d64c3c
Add a 128px version in the main icon.
2014-11-09 17:35:41 +00:00
e6e9560cf8
Open new help page on "Help" buttons of the various object editors.
2014-11-09 12:00:41 +00:00
1ad0e3d287
Add 64px and 256px versions to main icon. See http://www.heidisql.com/forum.php?t=16814
2014-11-09 10:29:52 +00:00
80b0d8935a
Add "view changelog" button to updatecheck dialog.
2014-11-08 15:07:51 +00:00
68dc0bce05
Also display download page when clicking the "download release" button in update dialog.
2014-11-08 14:57:41 +00:00
2c7cf7ace0
Add "check/uncheck all" button to column selector in textfile import dialog. See http://www.heidisql.com/forum.php?t=13566
2014-11-08 14:28:42 +00:00
0725da854f
Fix detection of DEFAULT value in CREATE TABLE code of MS SQL tables, which is wrapped in parentheses. See http://www.heidisql.com/forum.php?t=16748
2014-11-02 18:55:32 +00:00
f832178eec
Allow applying CURRENT_TIMESTAMP to DATETIME columns. See http://www.heidisql.com/forum.php?t=16715
2014-11-02 13:33:25 +00:00
418dec3adf
Sort columns by attnum. Fixes wrong order of column names in data grid. See http://www.heidisql.com/forum.php?t=16747
2014-11-02 12:55:29 +00:00
9c0d093f2d
Fix sql error(2007) Malformed packet, happening on MariaDB-versions of libmysql. Prefer MySQL 5.6.21 versions now. See http://www.heidisql.com/forum.php?t=13454
2014-11-01 12:53:29 +00:00
dadb8c989e
Remove unused variable
2014-11-01 12:10:01 +00:00
4ec81e42d4
Bugfix: Remember currently checked items when clicking "Sort alphabetically", or when filter is active
2014-10-31 16:55:55 +00:00
13799998d8
Remove obsolete readme file, now online at http://www.heidisql.com/help.php
2014-10-28 19:34:24 +00:00
b839bf7f79
Add missing TDBConnection.IsPostgreSQL method, used in previous commit.
2014-10-27 19:49:52 +00:00
3d29d13b42
PostgreSQL, table editor: Retrieve columns from pg_attribute, to get the column comments. Also support applying a comment on new and existing columns.
2014-10-27 19:42:56 +00:00
aade1a9abc
Add support for MSSQL datetime2 column type. See http://www.heidisql.com/forum.php?t=16708
2014-10-26 11:38:27 +00:00
371421cb06
Detect PostgreSQL column types #26 (oid) and #28 (xid) as integers
2014-10-26 11:00:02 +00:00
2a6c891654
Introduce handling of stored functions in PostgreSQL: Displays functions in database browser, enables function editor and "run routine" button with argument handling.
2014-10-26 10:39:58 +00:00
68704bb8fd
PostgreSQL: Query pg_constraint + pg_attribute instead of IS.TABLE_CONSTRAINTS + IS.KEY_COLUMN_USAGE for keys and their column names. See http://www.heidisql.com/forum.php?t=16213
2014-10-24 17:53:42 +00:00
2882e4f2bb
Prefer pg_catalog tables in TDBConnection.GetCreateCode. See http://www.heidisql.com/forum.php?t=16213#p16685
2014-10-21 18:23:35 +00:00
10f4d255a5
MSSQL: Return float values as expected by server. See http://www.heidisql.com/forum.php?t=16661
2014-10-19 11:00:31 +00:00
92543c3098
Keep compatibility with older MySQL servers when getting a trigger's CREATE CODE. See here: http://www.heidisql.com/forum.php?t=16662
2014-10-19 10:07:20 +00:00
f0fc3e428b
Fix typos
2014-10-19 09:45:44 +00:00
a0e48733dc
Query pg_namespace table for getting all schemata instead of is.schemata. See http://www.heidisql.com/forum.php?t=16213
2014-10-17 07:51:03 +00:00
464a1261b8
Support DEFAULT clause in PostgreSQL table structure. See http://www.heidisql.com/forum.php?t=16622
2014-10-16 18:51:48 +00:00
c4418294a1
Make overloaded TDBConnection.IsNull(String) case insensitive for column names. Important for IS queries, which have uppercase column names in MySQL, and lowercase names in PostgreSQL.
2014-10-16 18:50:17 +00:00
d2f3662626
Restrict column reordering to MySQL only. Not supported by MSSQL and PostgreSQL. See http://www.heidisql.com/forum.php?t=16328
2014-10-16 18:09:03 +00:00
6ac52567af
Call more useful online help by "Help" button on table editor
2014-10-16 12:27:50 +00:00
a966ec7267
Unify help calls in helpers.Help(), and pass sending control for "place" parameter in help url.
2014-10-16 08:02:06 +00:00
2ee5aa43a5
Update year of copyright
2014-10-14 17:58:04 +00:00
9cc5fc6aaf
Turn readme.txt into a more comprehensive online help document
2014-10-13 18:49:59 +00:00
176445e6c5
Remove unused variable
2014-10-09 17:18:37 +00:00
cf72ee2953
Add filter textbox to column selector in "Data" tab
2014-10-09 17:14:34 +00:00
6617132cb2
Enhance translation hints
2014-10-08 19:49:22 +00:00
0e4131cde4
Fix wrong comment
2014-10-06 16:59:51 +00:00
ecdf49b85d
Include SQL_TABLE_VALUED_FUNCTION's in MSSQL object browsing. See http://www.heidisql.com/forum.php?t=16493
2014-10-06 16:58:04 +00:00
e6d0eb20c3
Update libmysql again to those from the MariaDB 10.0.14 package. Probably fixes a connection latency, described in http://www.heidisql.com/forum.php?t=16425
2014-10-04 16:10:31 +00:00
b6292da965
Overseen file for previous commit
2014-10-03 12:40:32 +00:00