forked from tora-tool/tora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2480 lines (2384 loc) · 140 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2.1.3:
2010-09-20: Bugfix release. See ChangeLog for full details
2.1.2:
2009-10-14: Added win32 cross compile scripts/patches/notes from ZippyDufus <[email protected]>
# lots of notes missing for 2.x series
1.4:
*: Updates for QT4 build support
1.3.23:
2007-09-19: removing all Qt < 3.2 support and KDE integration in preparation for future Qt4 work
2007-09-25: update to tostorage.cpp query
2007-09-25: fix broken db version detection
2007-09-05: sort order for long ops
1.3.22:
2006-03-01: Autocompletion first step
2006-03-03: Autocompletion second step
2006-03-03: Fixed bug #1437575
2006-03-03: update to version 1.3.22svn the windows client too
2006-03-07: fixed some bug with completion
2006-03-09: fixed a bug with indentetion (inserted empty lines)
2006-03-13: update Makefile.mingw to reflect chec.pl-> chex.cpp change
2006-03-13: When searching for tnsnames.ora look to TNS_ADMIN on Windows too, to support Oracle Instant Client user
2006-03-14: Remove references to TOAD and OAS and various conditional compiles for them
2006-03-14: Remove Quotes part of about dialog.
2006-03-14: Fix problem with last character of sql entry box
2006-03-14: Apply patch #1438322 to regain some QT3.1 compatability for RHEL-3
2006-03-18: Reverted patch #1438322: it hangs tora PL/SQL Debugger
2006-03-18: Fixed autocompletion on Linux
2006-03-20: Linux autocompletion works on Windows too. Remove the ifdef
2006-04-05: Fixed compilation on windows. Re-added missing patch from Michael Meskes
2006-04-13: Apply patch from Andrew Gilmore to fix rpm spec builds as non-root user
2006-04-24: Add drop tablespace functionality
2006-11-21: Apply patch from Michael (m0m) for memo editor width and other size issues
2006-11-21: Applied patch for postgres 8 schema browsing cleanup from Theo Schlossnagle
2006-11-21: Applied patch from Michael for syntax highlighting font issues
2007-09-10: Applied patches from Andreas Piesk for explain plan handling and window splitter sizes.
2007-09-13: Applied patches from Andreas Piesk for better data type decoding
2007-09-13: Applied patches from Andreas Piesk for config build support for Ora 10gR2
2007-09-13: Updated to latest OTL release 4.0.157
2007-09-13: Fixed Makefile.am for building html in docs
2007-09-15: Change code to consistently use .html extension
2007-09-15: Add decoding of more oracle data types and better handling of describe failure
2007-09-17: Applied patches from Andreas Piesk for better explain plan handling, warning cleanup
2007-09-17: Applied patches from Andreas Piesk for better oracle version detection
2007-09-17: Applied patches from Andreas Piesk for update to loki-0.1.6
1.3.21:
2006-02-08: Applied patch from Pawe=B3 Kucharczyk to fix storage queries used against Ora 10gR2.
2006-02-18: Readded Check Syntax to SQL Worksheet (many thanks to Sergei Kuchin of otl)
2006-02-18: minor changes to PL/SQL Debugger. Solved a bug where the debugger stops on every call of a stored function, now when compiling the current position of the cursor is mantained
2006-02-18: Now when you open the search and replace dialog, the focus is always on the search field
1.3.20:
2005-12-30: Applied patch #1393915 to return some Pl/SQL functionality w/ QScintilla
2005-01-02: Applied patch #1393554 to resize connection dialog fields automatically
2006-01-06: Applied patch #1398328 to better handle oracle version comparisons
2006-01-10: Applied patch for bug #1213388 for parsing of RETURN SELF AS RESULT
2006-01-11: Applied patch from Michael Kaes for status bar NULL msg behavior.
2006-01-20: Upgraded to otl 4.0.126 to obtain the error position in SQL statement
2006-01-20: Fixed copy from the menu and Ctrl+C
2006-01-20: Fix from Thomas Porschberg for building with Oracle Instant Client 10g
2006-01-20: Fix for bug 957911
2006-01-21: Patch #1245301 from Mike Fleetwood (Charts in Server Tuning with 10g)
2006-01-27: turned autoindent on
2006-01-29: first (incomplete) implementation of the autocompletion API
2006-01-31: remove (for now) autocompletion API. It crashes on Windows
2006-01-31: fix for bug #1322120
2006-01-31: Search now scroll to the found item
1.3.19:
2005-09-15: First QScintilla port
2005-09-01: Updates to debian build rules
2005-09-01: Applied patch #144512 to fix setenv bug #1242423
1.3.18: 2005-06-29
2005-06-29: Fixes to build system
2005-06-29: Default spec file to build rpms for mandrake and redhat
2005-06-29: Other misc. updates to get build process cleaner.
1.3.17: 2005-06-29
2005-03-12: Fix bug 1017639 with table script for partitioned tables
2005-03-14: Fix crasher when displaying memo dialog from toparamget.cpp
2005-03-19: Fix index extraction bug from 1109904
2005-03-19: Fix minor bugs in todebug.cpp + bug 877682
2005-03-20: Added support for type TIMESTAMP in column listing in table browser
2005-03-20: Fix bug with NVARCHAR2/NCHAR2 field size in browser (new query for oracle 9)
2005-04-02: updated otl to 4.0.110
2005-04-02: Fix bug with NVARCHAR2/NCHAR2 fields not displaying properly (Bug# 1115326)
2005-05-19: Applied patch 1175927 to fix memory leak.
2005-05-19: Applied patch 1186247 to convert more code to STL.
2005-05-19: Applied patch 1180569 to allow removing breakpoints.
2005-05-20: Applied patch 1186958 to convert min/max to std routines
2005-05-20: Applied patch 1188297, more refactoring
2005-06-06: Applied patch for bug 12545, KDE support for sqlnet connections
2005-06-07: Applied patch for issue 1187925 by Volker Goetz
1.3.16: 2005-03-04
2005-02-26: Fix label text in ui for prefs, bug #1152550
2005-02-25: Applied patch to otlv.h attached to bug 984908
2005-02-21: Applied gentoo ebuild patch from Nuno Araujo to improve oracle build
2005-02-24: Applied patch to correct bug #909636 with creating a new proc in PL/SQL Debugger
2005-02-24: Added doc info about building on oracle instant client. Still waiting for appropriate configure patch.
2005-02-24: Applied modified patch to support oracle instant client
2005-02-24: Fix const issue with otlv4 header which impacted SuSE builds (bug #1037007)
2005-02-24: Fix bug 996589 and support REMARK in addition to REM in SQL.
2005-02-24: Fix bug 1004631 missing ctype header
2005-02-24: Try to fix bug 1054655 by searching lib32 first.
2005-02-24: Added "Insert Saved Query" toolbar button, first draft. Replaces entire editor text.
1.3.15: 2005-02-17
2005-02-17: Textual updates, new urls, new logo, etc.
2005-02-17: Applied patch #952545 for fixing toinvalid invalid object recompilation
2005-02-17: Removed references to commercial license and registration
2005-02-17: Applied patch to put open/save/etc. at more standard initial position and resize connection popup (#1001613)
2005-02-17: Applied patch to show partition info for query plans (#1001615)
2005-02-17: Applied patch 1025950 to fix bug 1001826
2005-02-17: Applied patch 1048530 to correct races/crash
2005-02-17: Applied patch 1055777 to correct problem with queries that failed segfaulting
2005-02-17: Applied patch 1055783 to correct parsing/extraction of triggers
2005-02-17: Applied patch 1057806 to correctly free memory
2005-02-17: Applied patch 1058979 to correctly free memory
2005-02-17: Applied patch 1059686 to fix memory leak
2005-02-17: Applied patch 1074869 to fix a configure.pl problem with quoting
2005-02-17: Applied patch from bug #1120268 to fix segfault
2005-02-17: Applied patch 984360 to fix builds under Qt 3.1 (i.e. RHEL3)
1.3.14.1: 2004-07-01
2004-06-30: Fixed resolving the application path in Windows.
2004-06-30: Fixed printing under KDE.
2004-06-30: Fixed width of column calculation.
2004-06-30: Updated version.
2004-06-30: Fixed truncate table command.
2004-06-30: Rearranged some objectfiles in plugins so it works again.
2004-06-30: Removed unsupported legacy MySQL stuff from configure.
2004-06-30: Fixed problem with CTRL+T key shortcut.
1.3.14: 2004-06-29
2004-06-28: Added PostgreSQL default port.
2004-06-28: Fixed indentation of Quotes under windows.
2004-06-22: Changed homepage back to original again.
2004-06-20: Fixed install. (Thanx Robert Ham)
2004-06-10: Fixed performance problem in scripting tool. (Thanx Ivan Brezina)
2004-06-10: Multiple selection in invalid tool. (Thanx Alexander Sheremet)
2004-06-10: Some performance updates for iterating through lists. (Thanx Ivan Brezina)
2004-06-04: Updated about with new homepage location.
2004-06-04: Somw Windows compile fixes.
2004-06-04: Fixed bug in drop index.
2004-05-24: Flush privileges on changes on access tables.
2004-05-24: Emit a signal from a content editor when changes are store to the DB.
2004-05-24: Fixed build problem with KDE 3.1 or earlier.
2004-05-21: Save changes in content editors before destroying them.
2004-05-19: Ignore case when finding lobs in content editor.
2004-05-19: Fixed problem with passing options to QSql client.
2004-05-19: Added support for binary values in QSql and Oracle backends.
2004-05-19: Added support for binary values in content editor.
2004-05-19: Added support for binary in query values.
2004-05-19: Fixed problem with empty host and history.
2004-05-19: Changed logo to say Quest.
2004-05-18: Changed release script to precompile uic files.
2004-05-18: Only generate uic and moc files that are missing on configure.
2004-05-18: Implemented more options for MySQL connection including SSL and Compress.
2004-05-18: Implemented new more flexible handling of options for connections.
2004-05-18: Enable selectAll for list views.
2004-05-18: Added truncate, check, optimize and analyze table functions in browser.
2004-05-18: Multi selects in browser.
2004-05-13: KDE compile fixes.
2004-05-13: Added dropdown history of parameters.
2004-05-13: Parameter history are no longer connection specific.
2004-05-13: Add ; to end of toSQL templates.
2004-05-13: Don't show expandable if no children in toSQL templates.
2004-05-06: Fixed RAW handling for Oracle.
2004-04-27: Fixed warnings in new gcc version in qt legacy source.
2004-04-24: Worked over TOAD and TO_NO_ORACLE defines.
2004-04-23: Added support for MySQL in toResultParam class.
2004-04-23: Changed how init strings in connections are stored (Using QStrings instead of QCString).
2004-04-23: Added function to change database and get init strings for connections.
2004-04-23: Added support for changing the schema in the worksheet.
2004-04-21: Indicate if there are errors in debugger windows. (Thanx Francesco Dandrea)
2004-04-21: Unquote object fix in debugger.0 (Thanx Francesco Dandrea)
2004-04-21: Changed MySQL extractor comments from // to --.
2004-04-21: Changed script header comments to -- from rem.
2004-04-19: Removed compile warning in worksheet of unused variable.
2004-03-30: Ignore errors on rollback when rollbacking QSqlConnections.
2004-03-30: Ignore errors on rollback on stop in analyze.
2004-03-30: Changed size policy of table and schema comboboxes when editing indexes or constraints.
2004-03-30: Changed size of icon for main window (From 16x16 which became really small when changing windows to 32x32).
2004-03-29: Fixed spelling of ODBC connection provider to QSql name.
2004-03-29: Switched around Undo and Redo keybindings for TOAD.
2004-03-29: Improved error reporting on failed queries for QSql provider.
2004-03-29: Fixed some SQL worksheet to editor references.
2004-03-26: Some minor linux buildfixes.
2004-03-25: Fixed table lookup key shortcut.
2004-03-25: Removed TOra reference in new version check.
2004-03-25: Fixed problem with browser remembering removed filters on restart.
2004-03-25: Problem in index list with duplicates.
2004-03-25: Worksheet => SQL Editor.
2004-03-25: Change order of execute next and all.
2004-03-25: Indicate active filter
2004-03-25: Define filter problem in import/export.
2004-03-25: Change keep alive text to longer description.
2004-03-25: Remove additional help.
2004-03-25: Execute directory when selecting log should be execute directly.
2004-03-25: Add an apply button to options dialog.
2004-03-25: Fixed refresh default to 30 seconds.
2004-03-25: Fixed problem with off by one in highlighted text on Windows.
2004-03-24: Fixed resolving of program directory in windows.
2004-03-24: Fixed no new check configure stuff. (Thanx Peter Eisentraut)
2004-03-24: Unquote constraints better in MySQL extractor.
2004-03-23: Don't allow to add indexes or constraints when no table is selected.
2004-03-23: Updated Makefile.sample.
2004-03-23: Fixed problem with help context.
2004-03-23: Fixed oracle index description to conform to new version.
2004-03-23: Adapted index editing to new index description.
2004-03-23: Changed how type in indexes are reported in the index description.
2004-03-23: Added context menu to session list.
2004-03-23: Added shortcut to mark a selection in session browser.
2004-03-23: Fixed context menu for analyze tool.
2004-03-23: Fixed context menu of light worksheets.
2004-03-23: Added context menu to some browsertabs.
2004-03-23: Added context menu for worksheet.
2004-03-23: Fix problem with empty owner in analyzer.
2004-03-23: Moved create toolbar to always be visiable regardless of current tool.
2004-03-23: Make toResults work even though they don't have a toolwidget above them.
2004-03-23: Made it posible to select schema when creating new table.
2004-03-23: Made it posible to work on several different tables in index dialog.
2004-03-23: Added a toConnectionWidget class to be able to use results without tool widgets in most cases.
2004-03-22: Removed some TOra references regarding upgrade check.
2004-03-22: Added option (default on) for having describes in another window in worksheet.
2004-03-22: Added option for using onlyforward queries on QSql provider.
2004-03-22: Added a stretchable widget at the end of the template toolbar.
2004-03-22: Changed name of SQL template to project manager.
2004-03-22: Added MySQL access tab in browser.
2004-03-22: Remember non standard port correctly in new connection dialog.
2004-03-22: Fixed missreading of some invalid dates from MySQL.
2004-03-20: Show all columns of scripting lists.
2004-03-20: Changed to use closebuttons of Qt docks for templates.
2004-03-20: Added browser tool create menu.'
2004-03-20: Added add index functionality.
2004-03-19: Some build stuff fixes.
2004-03-19: Fixed startup on other tab in browser.
2004-03-19: Fixed about dialog size.
2004-03-19: Fixed translation of welcome message.
2004-03-19: Added toolbar for index tab.
2004-03-19: Added option to drop index.
2004-03-19: Refresh screen after making changes in browser.
2004-03-19: Added drop table button.
2004-03-19: Don't let main window manage toolbars for child windows.
2004-03-18: Fixed UI to modify indexes.
2004-03-18: Fixed quoting of rename datafiles.
2004-03-18: Fixed problem with closing queries to quickly on QSql provider.
2004-03-18: Fixed problem with every non select query being execute twice.
2004-03-18: Removed valid check for QSqlProvider since NULL:s are apparently invalid.
2004-03-18: Fixed handling of NULL:s in toQSqlProvider.
2004-03-18: Work around MySQL missrepresenting some values as NULL when they are not (Dates specifically).
2004-03-18: Fixed unitialized warning in browser filter.
2004-03-18: Fixed uninitialized value of datatype widget.
2004-03-18: Changed initial size of modify constraint dialog.
2004-03-18: Fill in all shortcuts of TOAD bindings to not give any fuzzy ideas to the translator.
2004-03-18: Export to file of results now use Windows newlines on Win32.
2004-03-18: Fixed problem with analyze command failing and not quitting.
2004-03-18: Fixed MySQL analyzer when running on specified database.
2004-03-18: Mark MySQL connection to only handle one query at a time.
2004-03-18: Made default of object cache behavior configurable.
2004-03-17: Removed unused prototype for logMessage in toConnection.
2004-03-17: Made cacheDir a static function of toConnection.
2004-03-17: Changed how directory cache files are generated to TEMP on windows.
2004-03-17: Fixed some default password issues in new connection dialog.
2004-03-17: Added support for editing constraints.
2004-03-17: Added option to hide header of columns view.
2004-03-17: Support for C++ style comments in syntax highlighting.
2004-03-17: Fixed unquoting of MySQL names.
2004-03-17: Changed filename of database object cache to work better with non Oracle databases.
2004-03-17: Support via extractor under constraint tab if available.
2004-03-17: Fixed app name of extraction header.
2004-03-16: Hide options in worksheet to applicable to non Oracle.
2004-03-16: Added RULE hints for some Oracle queries.
2004-03-16: Fixed better support for MySQL procedural statements.
2004-03-16: Support for C++ style comments in SQL parser.
2004-03-16: Keep track of analyzer in syntax setup dialog.
2004-03-16: Some adjustments for help.
2004-03-15: Added signal before menues are display in listviews.
2004-03-15: Hide mode if only one mode is available.
2004-03-15: Added port to new connection list.
2004-03-15: Call QListView doubleclick event toListView.
2004-03-15: Fixed clicking and doubleclicking in the connection history list.
2004-03-15: Only check if resources are supported to determine if information tab is shown.
2004-03-15: Changed button text from clean sheet to new sheet in debugger.
2004-03-12: Changed icon of visualize.
2004-03-12: Updated configure script for the new binding generation.
2004-03-12: Added option for enabling TOAD bindings.
2004-03-12: Added TOAD compatibility bindings.
2004-03-12: Added keyboard shortcut for save as.
2004-03-12: Added replace keyboard shortcut back (Customizable this time).
2004-03-12: Added function to compare key sequences to key events.
2004-03-12: Don't include keybindings in search & replace dialog.
2004-03-12: Changed keybinding for copy user or role (Duplicate).
2004-03-12: Changed keybinding for add role (Duplicate).
2004-03-12: Changed keybinding for add user (Duplicate).
2004-03-12: Added keyboard shortcut CTRL+A to select all.
2004-03-12: Changed default keybinding for Change current connection to CTRL+Shift+U from CTRL+U.
2004-03-12: Changed default keybinding for commit from CTRL+L to CTRL+SHIFT+C.
2004-03-12: Added keybindings to uppercase/lowercase commands.
2004-03-12: Added some tuning stuff to the session list screen for MySQL.
2004-03-11: Added new class to connect values of a piechart to a line or barchart.
2004-03-11: Added filter to piecharts.
2004-03-11: Fixed problem with piechart queries having more than 2 columns.
2004-03-11: Added posibility to have labels first in pie chart.
2004-03-11: Fixed indentation of elsif.
2004-03-11: Added boolean as a default keyword.
2004-03-11: Fixed spelling of TRIGGER in debugger. (Thanx Stephen)
2004-03-11: Fixed numeric sorting in lists and content editor.
2004-03-11: Support Oracle versions with 2 digits in version detection.
2004-03-11: Updated sample makefile.
2004-03-11: Added change connection button to worksheet (Which mysteriously was removed yesterday).
2004-03-10: Enable or disable explain plan button depending if supported by database.
2004-03-10: Removed stuff from worksheet menu not applicable to current database.
2004-03-10: Hide statistics button in worksheet if not supported.
2004-03-10: Hide information tab if neither LongOps or Resources are supported.
2004-03-10: Added new sourcefile to configure and sample makefile.
2004-03-10: Changed default location of tools toolbar to top.
2004-03-10: Moved connection toolbar.
2004-03-10: Moved table buttons over first pane instead of second pane.
2004-03-10: Always call cancel on nonblocking queries that are not read to the end before deleting them (Needed for MySQL).
2004-03-10: Implemented canceling for MySQL queries.
2004-03-10: Set forwardOnly for QSqlQueries.
2004-03-09: Fixed delete of column order in QSql provider.
2004-03-09: Fixed some bugs regarding analyze for MySQL.
2004-03-08: Fixed can handle of script to actually check extractor support.
2004-03-05: Add an extra newline at end of migration script for MySQL tables.
2004-03-05: Fixed some Windows build errors.
2004-03-05: Changed version to 1.3.14.
2004-03-05: Removed some unused tab-related stuff in toResult.
2004-03-04: Made toResult see if connection was changed since last refresh when figuring out if result is valid.
2004-03-04: Fixed problem when no extra parameters for column specified.
2004-03-04: Fixed problem with column list on MySQL not in object cache.
2004-03-04: Fixed problem when changing connection in browser.
2004-03-04: Fixed problem when changing schema in browser.
2004-03-04: Hide size and precision in datatype widget if not wanted when changing datatype.
2004-03-04: Don't generate prompts or header in SQL when changing table.
2004-03-04: Added equality operators for parsed statements.
2004-03-04: Changed how renames are encoded in migration descriptions.
2004-03-04: Fixed bug i migration code of extractor.
2004-03-01: Fixed some Windows specific compilation problems.
2004-02-29: Moved extracting column data into toExtract.
2004-02-27: Fill out the migration data for applying changes when editing tables.
2004-02-27: Moved createFromParse to general extractor.
2004-02-26: Fixed so that create table dialog works with Oracle too.
2004-02-26: Made Oracle extractor also use the EXTRA field to describe columns.
2004-02-26: Set caption of memo editors.
2004-02-26: Fill out dialog of edit table with contents of current table.
2004-02-25: Fixed exception in constructor of toResultResources.
2004-02-25: Reorganize SQL so Oracle definitions are never first if other implementations exists.
2004-02-25: Use SHOW COLUMNS command to display information on MySQL columns.
2004-02-25: Don't load Oracle SQL if no Oracle support.
2004-02-25: Added index columns for MySQL.
2004-02-25: Fixed problem with indexes under MySQL.
2004-02-25: Made getting parameter resize behaviour better.
2004-02-25: Fixed a bug in laying out tab bars.
2004-02-25: Fixed potential crash in toTabWidget when widget was removed.
2004-02-24: Made a bunch of modifications to the edit table dialog.
2004-02-24: Added new widget to define table column datatype.
2004-02-24: Added support for extractors to report available datatypes.
2004-02-24: Added index tab for MySQL in browser.
2004-02-24: Fixed sorting of modules in configure.pl.
2004-02-23: Add a new function in a result filter to be called before every query is executed.
2004-02-23: Added duplicate removal in browser filter.
2004-02-20: Fixed hang when comparing things that were actually equal.
2004-02-18: Added support for setting table comments in column view for MySQL.
2004-02-18: Fixed application lock on execution of faulty QSql query.
2004-02-18: Made posible to specificy which columns of show (Or any query) is interesting for QSql provider.
2004-02-18: Included table comments for MySQL in object cache.
2004-02-18: New syntax for MySQL queries allow iteration of queries over multible tables/databases.
2004-02-18: Save databases in object cache for MySQL tables.
2004-02-18: Allow both analyze and optimize of MySQL tables in statistics tool.
2004-02-18: Improved object cache for MySQL (Now scans all available databases).
2004-02-17: Make cursor busy during entire extraction procedure to remove flickering cursor.
2004-02-17: Fix so that the correct analyzer is used in tokenizers when parsing.
2004-02-17: Fix so that the correct analyzer is used in tokenizers when using highlighted text input.
2004-02-17: Take account of connection when auto indenting in edit extension.
2004-02-17: Made SQL parser and tokenizers use quote character from analyzer.
2004-02-17: Made syntax analyzer supply a quote character used for the database.
2004-02-17: Don't upper object names while parsing extraction list.
2004-02-17: Added some more utility functions to SQL parser.
2004-02-13: Added support for different syntax analyzers in SQL parser.
2004-02-13: Added support for MySQL in analyzer tool.
2004-02-13: Fixed a const declaration of syntax highlighter.
2004-02-13: Added specific MySQL syntax analyzer.
2004-02-13: Made worksheet switch analyzer based on connection.
2004-02-13: Made connection able to provide a syntax analyzer.
2004-01-22: Fixed bug in oracle extractor. (Thanx Rico Hendriks)
2004-01-22: Fixed some spelling errors. (Thanx Rico Hendriks)
1.3.13: Released 2004-01-20
2004-01-19: Fixed problem with highlighted text in windows.
2004-01-18: Fixed memory corruption when missing internet connection.
2004-01-18: Some minor Windows compilation fixes.
2004-01-11: Fixed uncought exceptions from enabling or disbling constraints in browser.
2004-01-06: Changed copyright from Underscore to Quest Software.
2003-12-24: Fixed parsing problem with ' at end of line in multiline strings.
2003-12-23: Clear debugger object selection when current editor is closed. (Thanx Francesco Dandrea)
2003-12-23: Fixed bug which changed schema for open debugger editors. (Thanx Francesco Dandrea)
2003-12-23: Pass on option OTL_ANSI_CPP to OTL.
2003-12-23: Upgraded OTL to 4.0.70.
2003-12-16: Fixed problem in debugger with scaning source and disappearing contenttree.
2003-11-21: Fixed bug with package code completion. (Thanx Francesco Dandrea)
2003-11-21: Added close all editors to debugger. (Thanx Francesco Dandrea)
2003-11-20: Changed order of libstdc++ paths in configure.
2003-11-19: Work around OTL bug when reading large LOB:s.
2003-11-19: Fixed for configure to handle QTDIR variable in makefile... again..
2003-11-18: Fixed missing sourcefile from OSX makefile.
2003-11-18: Fixed for configure to handle QTDIR variable in makefile.
2003-11-18: Added duplicate row functionality to content editor.
2003-11-09: Don't check to save changes when selecting a new package. (Thanx Francesco Dandrea)
2003-11-06: Fixed refresh for content editor.
2003-11-06: Removed a lot of latin1 explicit translations in content editor for legibility.
2003-11-06: Only specify non null values of inserts in content editor.
2003-11-04: Implemented migrate sequence.
2003-11-04: Implemented migrate role.
2003-10-28: Upgraded OTL to version 4.0.68.
2003-10-26: Fixed quoting for PostgreSQL.
2003-10-25: Fixed sorting in profiler. (Thanx Francesco Dandrea)
2003-10-25: Don't allow debugger to have no editors. (Thanx Francesco Dandrea)
2003-10-21: Dropped Qt 2.x compatibility from configure.
2003-10-21: Fixed Qt 3.0 compatibility issue.
2003-10-21: Added goto line functionality to edit extension. (Thanx Francesco Dandrea)
2003-10-21: Made poping up a selection dialog select the search text. (Thanx Francesco Dandrea)
2003-10-21: Merged Mac OS-X build patch into main source. (Thanx Rick Hall)
1.3.12: Released 2003-10-20
2003-10-20: Fixed partition support from below.
2003-10-20: Fixed font problem in windows.
2003-10-20: Changed version.
2003-10-19: Some small windows fixes.
2003-10-19: Added initial partitioning support in browser.
2003-10-13: Fixed enabling XFT in Qt only mode.
2003-10-13: Fixed bug in finding function to execute.
2003-10-13: Added functionality to close debugger editors.
2003-09-12: Added parse all function to worksheet.
2003-09-12: Added parse functionality to connection
2003-08-26: Fixed problem with X11 style pasting in editor. (Thanx again Volker Goetz)
2003-08-21: Fixed indenting on EXCEPTION keyword and complex statements.
2003-08-21: Fixed compile of toresultview.cpp in Qt earlier than 3.1.
2003-08-21: Added NOCOPY keyword.
2003-08-21: Fixed problem with deleting some Oracle queries. (Thanx Volker Goetz)
2003-08-21: Differentiate between no debug info and variable not found in debugger. (Thanx Francesco Dandrea)
2003-08-21: Made update content work on more than one package per editor.
2003-08-21: Made debugger able to handle more open windows.
1.3.11: Released 2003-08-09
2003-08-09: Some last minute windows fixes.
2003-08-04: Some fixes to how tool window sizes are restored from sessions.
2003-08-01: Added continue execution in debugger. (Thanx Francesco Dandrea)
2003-07-31: Added toTabWidget to API.
2003-07-31: Fixed compile problems with Forte compile. (Thanx Francesco Dandrea)
2003-07-31: Made configure accept beta versions Qt.
2003-07-30: Fixes for tab widget pane hiding. (Thanx Oliver Jehle)
2003-07-30: Fixed problem with non oracle index listings in browser.
2003-07-30: Removed initial extra space in index object type descriptions.
2003-07-30: Fixed problem with looking in destination table view in schema comparison.
2003-07-30: Added support for trigger status in oracle extractor.
2003-07-30: Added enable/disable constraints/trigger buttons to browser.
2003-07-30: Fixed problem with multiline check list view items.
2003-07-30: Enable buttons in browser depending on extraction support.
2003-07-29: Only invalidate layout after all result read in resultitem.
2003-07-29: Fixed really tricky bug with multiline strings in editors.
2003-07-28: Fixed problem with restoring window sizes on session restore.
2003-07-28: Added tooltips of piecharts.
2003-07-28: Added toolbutton for explain plan in worksheet.
2003-07-28: Fixed problem with SQL not being updated on some queries on connectionchange.
2003-07-28: Hide tabs instead of disabling them when not handled. (Thanx Oliver Jehle)
2003-07-28: Fixed problem with switching connection in database browser.
2003-07-28: Use new utility function to check DB type. (Thanx Oliver Jehle)
2003-07-27: Added mandrake RPM build to release scripts.
2003-07-27: Fixed problem with background not display correctly initially.
2003-07-27: Fixed maximized state detection when saving and restoring session.
2003-07-27: Fixed problem with locking up X11 on showing window sometimes (Don't hide row/col in statusbar).
2003-07-27: Removing bunch of windows newlines.
2003-07-27: Fixed Qt 3.0 compile problem.
2003-07-27: Fixed code completion on package members.
2003-07-27: Added more internal lock types.
2003-07-27: Don't show main window until after import of session (For more flickerfree startup).
2003-07-27: Added tab stop setting.
2003-07-27: Fixed QSql crash on non query statements.
2003-07-27: Fixed initialization of allfilter in content editor.
2003-07-27: Indicate if filter is used in content editor by pressing down the filter button.
2003-07-27: Made filter criterias shared between all content editors.
2003-07-27: Fixed problem with UNICODE chars being truncated.
2003-07-27: Fixed oracle quote to correct quote stuff with non ident chars.
2003-07-27: Don't pool connections if they don't have results.
2003-07-26: Added parameter name parsing in debugger.
2003-07-26: Fixed problem parsing non packages in debugger.
2003-07-26: Added variable names parsing in debugger again.
2003-07-26: Don't signal error in debugger on userbreak.
2003-07-26: Fixed problem in debugger in windows.
2003-07-26: Fixed compile problems in legacy mysql connection provider.
2003-07-26: Changed how width is calculated in resultcols.
2003-07-26: Added experimental SAP support. (Thanx Oliver Jehle)
2003-07-25: Added ugly hack to remove version of Oracle lib in RPM:s.
2003-07-25: Added check for temporary tool to only be enabled for 8.0 or later.
2003-07-25: Updated version to 1.3.11.
2003-07-25: Switched twirl back to GIF version since MNG works so poorly.
2003-07-25: Reserve size for check in checklist items.
2003-07-25: Fixed SQL in rollback tool.
1.3.10: Released 2003-07-25
2003-07-24: Fixed problem with all column expand on refresh of resultviews.
2003-07-24: Work around bug in Qt/Win 3.2.0 and fontmetrics.
2003-07-24: Fixed problem with missing new option in debugwatch.
2003-07-24: Some last minute fixes for Windows.
2003-07-24: Make sure tabs update on refresh in session view.
2003-07-24: Replaced all header streatch calls with resizemode calls.
2003-07-24: Fixed horrific bug in map import.
2003-07-24: Fixed problem with filter not being saved in session sometimes.
2003-07-24: Fixed width of content editor filter setup.
2003-07-24: Workaround Oracle bug when using filters and content editor.
2003-07-24: Show license nag screen on primary screen only on multiple screen configurations.
2003-07-24: Fixed recompile bug in invalid objects tool.
2003-07-24: Added support for invalid indexes in the invalid tool.
2003-07-24: Optimized rollback view (Loosed some precision though). (Thanx Jeff Price)
2003-07-24: Don't list temporary or secondary tables in analyze tool.
2003-07-24: Find long ops based on sid and serial in sessions.
2003-07-24: Fixed code completion again.
2003-07-24: Moved tools toolbar back to old position, works better.
2003-07-24: Make X11 link dynamically in the tora-static (Seems to crash otherwise on XFree4.3)
2003-07-23: Moved connection toolbar to the left of the tools if they all are on top. (Tools now change size)
2003-07-23: Hide tools not supported by current connection instead of just disabling them.
2003-07-23: Added posibility for connection providers not to handle more than one query per real connection at a time.
2003-07-23: Fixed unusual problem with background only queries.
2003-07-23: Updated sample Makefile to reflect new features.
2003-07-22: Fixed compile warning in OTL.
2003-07-22: Updated swedish translation.
2003-07-22: Added support for timestamp.
2003-07-22: Update static to include SSL support for PostgreSQL.
2003-07-22: Changed release script to only create one binary which is static with all but Oracle.
2003-07-22: Changed installation to use a shellscript to set up library path for Oracle libs unless plugins.
2003-07-22: Don't make static imply static oracle. To get static oracle use specific switch.
2003-07-22: Update API doc.
2003-07-22: Added new autodetect functionality of watches in debugger.
2003-07-22: Made problems in debugger be visible in more places than the log.
2003-07-22: Update log even if something went wrong. (Especially the log)
2003-07-22: Save edited state of editors.
2003-07-22: Separated GUI and handler of chart manager. (Should hopefully fix some focusing problems)
2003-07-22: Added 1 parse, 1 execute selection of SGA Trace tool.
2003-07-22: Made all listviews in the debugger be expanded.
2003-07-22: Added some keywords.
2003-07-22: Updated debugger to use new SQL parse framework.
2003-07-21: Fixed problem with lineno not being copied in parsed statements.
2003-07-21: Added temporary object tool. (Thanx Oliver Jehle)
2003-07-21: Fixed bug in trigger extraction. (Thanx Daniel Vérité)
2003-07-21: Fixed memory corruption bug in toGetSessionType. (Thanx Daniel Vérité)
2003-07-13: Added partial italian translation. (Thanx Paolo Magnoli)
2003-05-12: Set mimetype to text/html when copying to HTML.
2003-05-12: Fixed HTML exporting of lists.
2003-05-04: Fixed invisible menu in debugger.
2003-06-02: Fixed some missing Q_OBJECT declarations.
2003-05-28: Fixed bug with multiline list items.
2003-05-26: Remember if template window was open or not.
2003-05-26: Save values in extra columns of template SQL items.
2003-05-20: Fixed refresh on long ops view in worksheet.
2003-05-15: Fixed problem with Qt non static plugins in configure. (Thanx Oliver Jehle)
2003-04-30: Added rollback catch define to utils.h.
2003-04-30: Save configuration on exit.
2003-04-29: Save objects instead of widgets in connections.
2003-04-24: Added fix to really weird bug to do with statement pooling in otl.
2003-04-24: Minor change to how refresh is made in schema browser.
2003-04-24: Made refresh on result cols update object cache for table.
2003-04-23: Fixed bug when destructing QSql driver. (Thanx Laramie Leavitt)
2003-04-23: Made session filter look at both serial and session id.
2003-04-23: Made columns in left pane of schema browser and template help fill entire listview.
2003-04-23: Added new filter functionality for sessions view.
2003-04-23: Remember sortorder when refreshing resultlists.
2003-04-23: Remember sort order of sessions.
2003-04-23: Change recompile all to recompile selection in invalid objects.
2003-04-23: Added set module call on new connections.
2003-04-23: Added show SQL for analyze tool.
2003-04-23: Added blocks column in storage object list tool.
2003-04-08: Added define TOAPPNAME for application name and use it where needed.
2003-04-08: Fixed problem with treebased browsing of code.
2003-04-08: Fixed problems with '' in sql parser.
2003-04-08: Fixed column resizing problem on numeric only values.
2003-04-08: Removed some functionality when compiling for OAS (Proprietary project)
2003-03-19: Make Enter work same as Return in syntax highlighting.
2003-03-13: Added while, out and type reserved words.
2003-03-10: Added option to execute when selecting from log.
2003-03-10: Some more work on the mandrake spec file.
2003-03-10: Changed version.
2003-03-10: Added a dummy plugin to preload oracle libraries from ORACLE_HOME path.
2003-03-08: Created Mandrake Linux specific RPM.
2003-02-08: Fixed problem with not making outer john to v$process in Session viewer.
2003-02-08: Added some more keywords.
1.3.9.2: Released 2003-02-16
2003-02-15: If paramget data
2003-02-15: Use SQL parse in parts of the debugger.
2003-02-15: Fixed SIGSEGV problem in listviews.
2003-02-15: Fixed twirl not showing initially... again.
2003-02-15: Don't expand filenames if the file exist without extension.
2003-02-15: Made charts obey number formatting as well.
2003-02-14: Change password when it has expired.
2003-02-14: Get password from new connection instead of the password editor in new connections.
2003-02-14: Fixed problem with getting sizing in oracle extractor.
2003-02-13: Fixed problem with connectionhistory.
2003-02-13: Format BLOB:s as hex when reading.
2003-02-13: Check if tools are supported on a database when creating windows.
2003-02-13: Fixed problem with non Oracle databases and worksheets.
2003-02-13: Updated to new version of OTL.
1.3.9.1: Released 2003-02-12
2003-02-12: Added option to disable snapshot too old detection (Disabled by default).
2003-02-12: Fixed indent problem with before mentioned case.
2003-02-12: Fixed case problem in select sql parse.
2003-02-12: Don't need resize workaround for Qt 3.1 anymore.
2003-02-12: Added buttons for traversing previous entries.
2003-02-12: Added windows legacy bindings for copy/paste/delete.
2003-02-12: Get block size from parameters not alloced/free space (Much faster).
2003-02-12: Changed version to 1.3.9.1.
2003-02-11: Make it posible to view execution plan etc when recalling logged results.
2003-02-11: Recall log results by clicking into logging list of worksheet.
2003-02-11: Removed include of sstream.
2003-02-11: Made toNull/Unnull use toQValues.
2003-02-11: Made readValue return toQValues in noblock query.
2003-02-11: Expand in tooltip precision of numerical resultsets.
2003-02-11: Content editor always use maximum precision when reading numbers.
2003-02-11: Fixed problem with code completion.
2003-02-11: Added list of extents for schema browser extent viewer.
2003-02-11: Fixed problems with multilinetext.
2003-02-11: Added long ops to resources tab in worksheet.
2003-02-11: Removed progress in sessionview (Long ops still there and that works better).
2003-02-10: Changed tuning to remove some implicit number to character conversions.
2003-02-10: Fixed problem with first tool... again.
2003-02-10: Fixed hang in alert messenger... again.
2003-02-10: Definable number format.
2003-02-10: Added periodic refresh functionality to worksheet.
2003-02-10: Fixed bug in sorting in SGA trace. (Thanx Jeff Price)
2003-02-10: Made all of current session run in background queries.
2003-02-10: Fixed problem with twirl not showing up until it first moves.
2003-02-10: Made security manager much faster when selecting user with many object grants.
2003-02-10: Fixed bug with multiple entries of tablespaces in security manager.
2003-02-10: Removed a lot of flickering when selecting a user in security manager.
2003-02-10: Selectively removed some obscure keywords (That are also common english words).
2003-02-10: Updated reserved words to Oracle 9i.
2003-02-10: Added block to uppercase/lowercase stuff to edit extension.
2003-02-10: Use obfuscation of passwords when saving sessions too.
2003-02-10: Added column alignment option to listview menu.
2003-02-10: Fixed release script to generate correct Oracle9 rpm.
2003-02-10: Don't update history if not enabled in worksheet.
2003-02-10: Updated version.
2003-02-10: Fixed compile problem with Qt2 in toBackground.
2003-02-10: Fixed problem sorting negative numbers.
2003-02-10: Removed debug printf from worksheet.
2003-02-10: Fixed problem with styles not being presented right.
2003-02-10: Fixed problem with alert messenger ending up as default tool.
1.3.9: Released 2003-02-09
2003-02-09: Made extract to directory generate a tora project file.
2003-02-09: Fixed problem with detecting Oracle versions on Personal Oracle servers.
2003-02-08: Fixed a newly introduced SIGSEGV in the storage manager.
2003-02-08: Fixed a SIGSEGV in toResultViewCheck::setText.
2003-02-08: Strip \r before executing anything for Oracle since it seems to choke on it.
2003-02-08: Fixed ignoring of initial / again in worksheet.
2003-02-08: Some fixes in generating static binaries.
2003-02-07: Added default option to only show active sessions in sessionmanager.
2003-02-07: Changed default pane in session to current statement.
2003-02-07: Added long ops pane to session manager.
2003-02-07: Added progress from long ops to session view.
2003-02-07: Other minor windows compilation fixes.
2003-02-07: Fixed problem with settings not being saved in windows.
2003-02-07: Don't repaint entire editor when entering ' in an editor.
2003-02-06: Fixed problem with toObfuscate.
2003-02-06: Stop query before traversing log.
2003-02-06: Fixed problem with text depending on allText content in listviews.
2003-02-06: Fixed problem with columns not being extracted from triggers.
2003-02-06: Made TriggerInfo be in right SQL group.
2003-02-05: Report error to UI not just console in alert messenger.
2003-02-05: Fixed lock in alert messenger when not privy to use it.
2003-02-05: Added checks if saving to registry in windows fails.
2003-02-05: Fixed spelling error of update check.
2003-02-05: Optimization of result list by caching info we need (Huge improvement on sorting).
2003-02-05: Fixed problem with allText not working in multiline listviewitems.
2003-02-04: If saving result in worksheet save them when executing all.
2003-02-04: Execute all only select what has actually been executed.
2003-02-04: Execute all only executes rest from current cursor position.
2003-02-04: Progress dialog on execute all.
2003-02-04: Added some more quotes.
2003-02-04: Fixed compile clash with pthread in tooutput.cpp.
2003-02-04: Fixed a minor bug when saving results in worksheet.
2003-02-04: Real performance boost on resorting of results.
2003-02-04: Changed twirl logo to MNG instead of GIF.
2003-02-04: Updated sample makefile to reflect real makefile.
2003-02-04: Click on background twirl icon and see list of running queries.
2003-02-04: Keep track of what is executing on connections.
2003-02-03: Try to use as close popup menu as posible when enabling items in menues.
2003-02-03: Use erase functions to erase old connection history.
2003-02-03: Added functions to erase configuration keys.
2003-02-03: Updated swedish translation.
2003-02-03: Updated version to 1.3.9.
2003-02-03: Obfuscate passwords before saving them to the registry.
2003-02-03: Added functions to obfuscate text.
2003-02-03: Added commit distance option in script plugin.
2003-02-02: Added tablespace in extent widget (Thanx Oliver Jehle)
2003-02-02: Added option of commit distance when creating table contents in extractor.
2003-02-01: Added extent view in browser.
2003-02-01: Added result extent class.
2003-02-01: Fixed problem with lots of parameters to configure. (Thanx Mihai Ibanescu)
2003-02-01: Changed resize rows to 500 from 200 in resultviews.
2003-02-01: Added option to never read object cache. (Thanx Oliver Jehle)
2003-02-01: Added keybinding to stop all queries. (Thanx Oliver Jehle)
2003-02-01: Added UI to script to output extraction to file instead of editor.
2003-02-01: Made extractor output to stream instead of strings.
2003-02-01: Fixed warning in Qt only.
2003-01-31: Remember what was open in template editor after it has been closed.
2003-01-31: Insert executed statement when executing from log in worksheet.
2003-01-31: Fixed problem in extractor on some indexes.
2003-01-30: Show active sessions in session manager.
2003-01-30: Fixed bug so you can add new users/roles in security manager.
2003-01-23: Added delete history connection in connect dialog. (Thanx Oliver Jehle)
2003-01-23: Added funtionality for custom popup menues for listviews. (Thanx Oliver Jehle)
2003-01-23: Added a keep alive option to the database settings.
2003-01-17: Fixed compile warning in result columns.
2003-01-16: Add recompile all to invalid objects.
2003-01-16: Added support for object cache disk caching (Whoah, lot of caching there) (Thanx Oliver Jehle)
2003-01-16: Improved order of dirs in configure. (Thanx Oliver Jehle)
2003-01-16: Remember last filter in browser. (Thanx Oliver Jehle)
2002-12-13: Made configure detect lupdate.
2002-10-29: Fix configure problem with qt-mt.
2002-10-23: Use msleep if QT_THREAD_SUPPORT to help fink users.
2002-10-23: Added column with server PID to session view.
2002-10-23: Fixed problem with translated chartlabels.
2002-10-09: Don't add multiple include paths or a -I/usr/include.
1.3.8: Released 2002-10-05
2002-10-05: Made warning messages display message in a text editor.
2002-10-05: Some unused parameter fixed for gcc-2.95.3.
2002-10-05: Fixed some windows specific problems.
2002-10-05: Made the stub OCI work again under windows.
2002-10-05: Fixed specfiles for release.
2002-10-04: Made it posible to use non thread support Qt version.
2002-10-02: Another fix for OSX.
2002-10-02: Renamed LICENSE file.
2002-10-02: Another fix for gcc-3.2 in configure.pl.
2002-10-01: Expand toResultItems to fit size.
2002-10-01: Add support for modifying comments in DB browser.
2002-10-01: Made toResultItem a little more reusable.
2002-09-30: Fixed analyze stats in columnview with Oracle 8.
2002-09-30: Made configure work on Mandrake 9.
2002-09-24: Applied some Os X changes to configure (Thanx Olof Jönsson).
2002-09-24: Require multithread version of Qt.
2002-09-24: Use Qt implementation of semaphores always.
2002-09-09: Updated the originator of a quote (Thanx Matt Bush).
2002-09-09: Fixed uninitialized value bug in resultview.
2002-09-09: Fixed a bunch of warnings for unused variables.
2002-09-09: Fixed a very minor potential bug in connectionprovider.
2002-09-09: Minor optimization of editor printing.
2002-09-09: Fixed focus out problem with sql text editor.
2002-09-02: Fixed problem with incorrect background of toolbars in KDE styles.
2002-09-02: Fixed a bunch of gcc-3.2 warnings.
2002-08-26: Removed toFind since gcc-3.2 seems to have problems with it.
2002-08-26: Fixed deadlocks when threadcreation failed.
2002-08-26: Made threads throw exceptions on errors.
2002-08-26: Fixed problem with exceptions in connection providor destructor.
2002-08-12: Added empty french translation.
2002-08-08: Fixed problem with edit file menu not being updated correctly.
2002-08-08: Fixed compile problem on windows.
2002-08-08: Fixed quote.
2002-08-08: Fixed problem with disabling tools and locales and the default tool.
1.3.7: Released 2002-08-05
2002-08-01: Fixed problem with some windowmenu commands.
2002-08-01: Fixed problem with shortcuts for file/edit stuff not being available until menu was shown.
2002-07-31: Fixed problem with qApp not being initialized when translations were used.
2002-07-31: Added initial support for BSD in configure.
2002-07-31: Fixed problem with worksheet when session plugin not loaded.
2002-07-31: Fixed problem with compiling without mysql or oracle.
2002-07-30: Fixed problem with lrelease and Qt2.
2002-07-30: Set sorting of objects in security manager.
2002-07-30: Fixed problem with changing connection in security manager.
2002-07-30: Finished the swedish translation of TOra.
2002-07-30: Some Qt2/non KDE fixes.
2002-07-30: Fixed problem with CSV format separators.
2002-07-28: Fixed problem with setIconSet on parameter ignored.
2002-07-28: Added some Log4PL/SQL support to toOutput.
2002-07-28: Added template docs for Log4PL/SQL (Thanx Guillaume Moulard).
2002-07-28: Fixed problem with reading all initially on content editor.
2002-07-28: Fixed problem with Qt only compile.
2002-07-19: Added top buffers/row in sga trace.
2002-07-18: Added option to set locale to global options.
2002-07-18: Some more missing translations added.
2002-07-18: Better support for translations in Makefile.
2002-07-17: Made error reporting to stdout go to stderr.
2002-07-17: Some fixes to classes which used tr but didn't have a Q_OBJECT.
2002-07-17: Added lupdate support for Makefile.
2002-07-17: Added stub for swedish translation.
2002-07-17: Added a file with a bunch of extra translations needed.
2002-07-17: Fixed a bug in toTranslateMayby function.
2002-07-17: Improved error reporting for Oracle 7 dataases.
2002-07-17: Fixed problem with setting cursor position to error in worksheet.
2002-07-15: Made result content only disregard LONG and LOBs when connected to Oracle database.
2002-07-15: Made tool keys be QCString.
2002-07-15: Made toSQL more QCString friendly.
2002-07-12: Made import/exportData use QCString as prefix.
2002-07-12: Made saveMap take QCString as key datatype.
2002-07-12: Internationalization workover of code.
2002-07-12: Changed accessing config using QCString, not QString.
2002-07-05: Fixed problem with column extraction and datascale in extractor.
2002-07-02: Changed version to 1.3.7 again.
1.3.6.1: Released 2002-07-05
2002-07-04: Fixed a bug in restore the size & position of the main window from sessions.
2002-07-04: Changed windows license to be free for academic use.
2002-07-04: Removed license.c file from CVS repository (Not needed for nonlicensed version).
2002-07-04: Rewrote toresultlistformatui.uui to 2.x Qt format.
2002-07-04: Fixed refresh in SGA trace.
2002-07-04: Fixed problem in worksheet with executionplan not updating.
2002-07-04: Fixed problem with modifying tempfiles in storagemanager.
2002-07-04: Added units to long ops in SGA trace.
2002-07-04: Added unfinished long operations to SGA trace.
2002-07-04: Applied patch to sync debian distribution (Thanx Michael Meskes).
2002-07-04: Increased readahead in backgroundqueries.
2002-07-04: A large speedup in contenteditor.
2002-07-04: Worked around QPrinter problem with from/to pages being unitialized.
2002-07-04: Don't sort numbered listviews.
2002-07-03: Don't autoresize listviews when read more fixed number of rows.
2002-07-03: Fixed problem with background color being wrong in highlighted text.
2002-07-03: Fixed problem with comboboxes not resized to correct size.
2002-07-03: Fixed problem with temporary tablespaces in tuning.
2002-07-03: Fixed problem with extentmanagement for Oracle 8.0 in storage manager.
2002-07-03: Fixed problem with menues not behaving like they should.
2002-07-03: Fixed some minor exception problems.
2002-07-03: Fixed a bug with not disabling unsupported features for different databases.
2002-07-03: Added new template to view SQL dictionary.
2002-07-02: Save last format used when exporting result as text.
2002-07-02: Fixed problem with starting alert manager without privs to use it.
2002-07-02: Improved error reporting with invalid ORACLE_HOME.
2002-07-02: Changed version to 1.3.7.
2002-07-02: Don't add a minimum extent clause to locally managed tablespaces.
2002-07-02: Added posibility to specify separator and delimiter for CSV format.
2002-07-02: Fixed problem with security account info for Oracle 7.3.
1.3.6: Released 2002-07-01
2002-07-01: Some fixes for windows.
2002-06-27: Fixed for Qt2 in content editor.
2002-06-27: Be aware of exceptions in destructors.
2002-06-27: Fixed problem with code completion on all but first occurance.
2002-06-27: Fixed problem with statements ending in "...end".
2002-06-19: Worked over so that makefiles actually work when $ROOT is set.
2002-06-19: Fixed problem with unhandled exception in server tuning.
2002-06-19: Clear filename of resultfields when restating query.
2002-06-19: Also fixed the MySQL connection provider as regard to port.
2002-06-19: Now ports are specified as a colon after host instead of DB.
2002-06-19: Applied patch for fixing package building. (Thanx Erik Selberg)
2002-06-06: Implemented replace in content editor.
2002-06-06: Added default values to configure help output.
2002-06-06: Fixed problem with searching on text not shown in listviews.
2002-06-06: New edit widget framework to fascilitate search & replace.
2002-06-06: Fixed problem with not being able to select from menues.
2002-06-05: Change worksheet caption on save to reflect new filename.
2002-06-04: Added option to open file in new worksheet.
2002-06-04: Fixed problem with docks when not compiling with KDE support.
2002-06-04: Fixed problem with writing file without KDE support.
2002-06-04: Bugfix of highlighted text drawing.
2002-06-04: Fixed problem with multiline comments in worksheet.
2002-06-03: Huge speedimprovement in rendering of highlighted text when Xft is used (Moderate increase otherwise).
2002-06-03: Fixed problem with keyboard shortcuts sometimes not working.
2002-06-03: Display filename in title of worksheet.
2002-05-31: Fixed KDE base detection to use KWin instead of kappfinder.
2002-05-30: Fixed KDE KPrinter detection. (Thanx Volker Goetz)
2002-05-30: Some more work on the migration framework for oracle.
2002-05-27: Fixed compile problem in waitstate when compiling with Qt2.
2002-05-27: Made configure search for shared libraries called .sl as well as .so (HP-UX).
2002-05-27: Display filename when asking to save file in worksheet.
2002-05-23: Don't pass connection to toolbar.
2002-05-23: Code review of uncaught exceptions, huge number of changes.
2002-05-23: Fixed problem with opening errounus templates.
2002-05-23: Fixed problem with errors in rc file and SQL file.
2002-05-21: Fixed problem with marked text execution in worksheet.
2002-05-16: Fixed problem with else if of SQL indentation.
2002-05-16: Fixed problem with else if of SQL parser.
2002-05-10: Fixed problem with view extraction column order.
2002-05-07: Fixed problem with session wait event analyzer.
2002-04-28: Fixed restoring session in schema browser.
2002-04-28: Fixed problem with object and primary key of same name in oracle extractor.
2002-04-28: Fixed problem with background labels in tuning.
2002-04-28: Fixed problem with enabling chart tabs in tuning.
2002-04-26: Fixed problem regarding IS NULL in sql parser.
2002-04-26: Fixed problem with expanding checked items in schema comparison.
2002-04-26: Fixed problem with really large multiline listitems.
2002-04-26: Keep track of last directory file was opened or saved in.
2002-04-25: Some fixes to the INSTALL file.
2002-04-24: Applied patch to make configure detect Qt snapshots.
2002-04-20: Added wait state analyzer to session manager.
2002-04-20: Added session support for waitstate analyzer.
2002-04-20: Added only explain plan in worksheet.
2002-04-19: Always recompile everything on configure.
2002-04-19: Updated version to 1.3.6 again.
2002-04-19: Fixed compile problem on Solaris.
2002-04-19: Added option to globally disable upgrade check.
1.3.5.1: Released 2002-04-18
2002-04-18: Always add -ldl if you are compiling for Linux.
2002-04-18: Fixed default value of schema value in browser.
2002-04-18: Try to find static mysql library even though linking with Qt3.
2002-04-18: Changed version to 1.3.5.1 and release immediately.
2002-04-18: Fixed problem with mysql only getting first 100 rows.
2002-04-18: Fixed spelling error in help.
2002-04-17: Changed release script to generate two static binaries only.
2002-04-17: Made file IO access DB in background in tuning.
2002-04-17: Updated version to 1.3.6.
2002-04-17: Fixed spelling error of tuning dialog.
2002-04-17: Update to contributors section of about.
2002-04-17: Made overview window of tuning poll in background.
1.3.5: Released 2002-04-17
2002-04-16: Fixed wrong caption of license window in Windows.
2002-04-16: Fixed configure problem with mysql and Qt3.
2002-04-16: Added confirmation to change password tool.
2002-04-16: Some fixes to the oci stub.
2002-04-15: Fixed to rpm files.
2002-04-15: Some minor Qt2 fixes.
2002-04-15: Made use of result combos in all user lists where applicable.
2002-04-15: Added additional items functionality to result combos.
2002-04-15: Removed empty HTML table from API documentation.
2002-04-15: Fixed problem with ORA-24344 not being correctly reported.
2002-04-15: Don't log errors from OCI_SUCCESS_WITH_INFO returns.
2002-04-15: Don't display status messages from other threads than main thread (Can crash).
2002-04-15: Temporary ignore SQL*Plus scripting commands until framework complete in worksheet.
2002-04-15: Fixed parsing of case within other statements in sql parser.
2002-04-15: Made worksheet use new SQL parser to get statements.
2002-04-15: Made SQL parser handle SQL*Plus specific commands correctly (End on newline, not ;)
2002-04-15: Added end of line functionality to tokenizer.
2002-04-15: Added new function to parse one statement from a tokenizer.
2002-04-15: New tokenizer classes for the SQL parser, should make it much more adaptable to other uses.
2002-04-14: Fixed problem with missing style.
2002-04-14: Fixed problem with describing insert statements.
2002-04-14: Another stab at fixing extraction of sources in oracle extraction.
2002-04-14: Added support for the Qt Style factory if Qt3.
2002-04-12: Don't block UI while reading users in schema browser.
2002-04-12: Added new widget, combobox with background reading of query to add values.
2002-04-11: Changed registry key for windows settings.
2002-04-11: Added an OCI stub to be able to use TOra without Oracle in Windows.
2002-04-10: Implemented migrateSource for oracle extrator.
2002-04-10: Better criteria specification in session manager.
2002-04-10: Fixed bug with submenu saved SQL in worksheet.
2002-04-10: Display only analyzed/not analyzed objects in statistics manager.
2002-04-10: Added support for indexes in statistics manager.
2002-04-10: Added all schemas option to statistics manager.
2002-04-09: Implemented the initial fetch of content editor for MySQL.
2002-04-09: Fixed spelling error in a dialog window.
2002-04-09: Fixed problem with not null columns in postgresql.
2002-04-09: Added better datatype description in postgresql.
2002-04-09: Added recent files to end of file menu.
2002-04-09: Reserve range for last file in menues.
2002-04-09: Support specified file in editors.
2002-04-09: Added posibility to specify file to open in editwidgets.
2002-04-09: Added posibility to use several chart tabs in tuning.
2002-04-09: Added option to specify if synonym object cache is needed.
2002-04-04: Fixed problem with multiline comments in worksheet.
2002-03-26: Speedup of content editor.
2002-03-14: Made stop all disabled if no connection exists.
2002-03-11: Fixed problem with doubleclicking on history entries in connection dialog.
2002-03-10: Fixed default values of columns in extractor again.
2002-03-10: Went through source and made delete[] match new[].
2002-03-09: Fixed problem with default values of columns in extractor.
2002-03-09: Fixed another problem with the content editor on non oracle connections.
2002-03-08: Fixed describing descending indexes.
2002-03-08: Continued work on migration extractor for Oracle.
2002-03-07: Fixed content editor filter.
2002-03-07: Improved error reporting of QSql provider.
2002-03-07: Simplified project management by making both lists select synchonized.
2002-03-07: Consistently use item selection in security manager (Fixes crash).
2002-03-06: Fixed bug in debugger.
2002-03-06: Added URL to TOra homepage in about dialog.
2002-03-06: Fixed kdeversion for new headerfiles in KDE 3.
2002-03-05: Fixed a weird semaphore assignment in noblock query.
2002-03-05: Hopefully fixed bug with empty chartmanager window in Windows.