forked from m4dc4p/haskelldb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3218 lines (1870 loc) · 75.9 KB
/
ChangeLog
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
2009-04-09 [email protected]
* Added support for arbitrary sql functions in Database.HaskellDB.Query
* Added support for cast and coerce SQL functions in queries.
* Added support for anonymous and named parameters.
* Bug fixes around aggregate expressions.
* Updated Postgres SQL generation module so timestamp columns WITH timezone are created
when the column type in the table is CalendarTimeT.
* Updated Postgres SQL generation so CalendarTime values include timezone information
when they are sent to the database.
* Removed picoseconds from CalendarTime values in TestCases.hs.
* Added sqlQuote and defaulSqlQuote to SQL generation so quoting and escaping can be
overridden on a per-database basis.
* Updated Tests/test-hdbc-postgres.hs to take arguments.
* Associativity fixes between AND and OR operators in SQL queries.
* Got test/TestCases.hs working against postgres database.
* Rolled version to 0.13
2009-02-13 [email protected]
* Updated HDBC support to v2.0 (thanks to Artyom Shalkhakov <[email protected]>).
* Fixed HDBC-odbc connection string handling to use semi colons instead of spaces.
2004-08-19 15:02 d00bring
* src/Query.hs: Changed Num constraint to Ord on _min and _max.
2004-08-19 09:20 d00bring
* ChangeLog: Updated ChangeLog
2004-08-19 09:19 d00bring
* ANNOUNCE, NEWS, configure.ac: Updated for 0.9 release.
2004-08-19 08:58 d00bring
* src/: HaskellDB.hs, Query.hs: Added and fixed some haddock
comments.
2004-08-19 08:35 d00bring
* BUGS: Added url to bug tracker.
2004-08-19 08:29 d00bring
* INSTALL: Added mote info about SQLite problems.
2004-08-18 17:23 d00bring
* src/: DBDirect/DBDirect.hs, DBSpec/DBSpecToDBDirect.hs: expose
function for creating database layout modules from a DBInfo
2004-08-18 17:22 d00bring
* src/: HaskellDB.hs, Query.hs: Added <<- operator
2004-08-17 10:41 d00bring
* src/PrimQuery.hs, src/Query.hs, test/CustomSql.hs,
test/current-time.hs, test/default-auto-inc.hs: Added PrimExpr
for literals. Moved quoting and showing of literals to PrimQuery.
2004-08-17 10:40 d00bring
* test/run-all-tests: Added test-non-ascii
2004-08-17 10:38 d00bring
* src/BoundedList.hs: Added more Size constraints to shrink and
fromBounded
2004-07-16 20:57 d00bring
* src/Query.hs: Changed escaping of single quotes to use repeated
single quotes instead of backslash, since SQLite doesnät support
backslash escapes.
2004-06-10 11:22 chucky
* haskelldb.pkg.in: Fixed a stupid missing new-line bug
2004-06-02 21:37 d00bring
* src/Query.hs: use single quotes instead of double quotes when
quoting dates, double quotes break in postgre
2004-05-29 17:00 chucky
* src/FieldType.hs: CalendarTime now becomes a timestamp in sql
instead of date
2004-05-29 12:11 d00bring
* src/Query.hs: Export ShowConstant
2004-05-27 23:18 d00bring
* src/PrimQuery.hs, src/Query.hs, test/Makefile,
test/test-non-ascii.hs: Fixed escaping of non-ascii characters.
2004-05-24 14:07 d00bring
* src/PrimQuery.hs: removed space between function and arguments
2004-05-24 14:03 d00bring
* src/DBLayout.hs: DBLayout now only exports FieldType from the
FieldType module
2004-05-24 14:02 d00bring
* src/: HaskellDB.hs, PrimQuery.hs, Query.hs: Added _length.
2004-05-22 17:14 d00bring
* TODO: should support like etc. on nullable arguments
2004-05-20 01:17 d00bring
* src/HDBRec.hs: setField now takes a typed label
2004-05-20 01:08 d00bring
* src/HDBRec.hs: reverted to old implementation of #
2004-05-20 01:01 d00bring
* src/Database.hs: fixed type error caused by use of #
2004-05-20 00:54 d00bring
* src/HDBRec.hs: Fixed RecCat documentation.
2004-05-20 00:52 d00bring
* src/: DBLayout.hs, HDBRec.hs: Turned # into a general record
concatenation operator.
2004-05-19 15:37 d00bring
* src/HDBRec.hs: Added Eq and Ord for Record
2004-05-18 23:57 d00bring
* src/Query.hs: changed type of << to match .=.
2004-05-18 21:29 d00bring
* src/: Database.hs, HDBRec.hs, HaskellDB.hs, Query.hs,
drivers/hsql/Common.hs, drivers/wxhaskell/WX.hs: Moved more of
record infrastructure into HDBRec
2004-05-18 19:56 d00bring
* src/DBDirect/DBDirect.hs: Import GenericConnect
2004-05-18 19:55 d00bring
* src/HaskellDB.hs: Removed re-export of genericConnect, since this
would force everyone yo link against all database drivers
2004-05-13 18:47 d00bring
* haskelldb.pkg.in, test/Makefile: Made haskelldb a non-auto
package as it would switch -fglasgow-exts on always.
2004-05-13 09:44 d99mary
* src/Database.hs: createDB hadock comment
2004-05-13 02:36 viblo
* src/PrimQuery.hs: fixed some spelling errors in the haddock
comments.
2004-05-12 12:46 forester
* BUGS, INSTALL: Added bug about the string escaping when using
non-ascii characters.
2004-05-11 19:32 d00bring
* BUGS, TODO: Added update typing bug
2004-05-11 19:28 d00bring
* test/insert-update-delete.hs: removed unused import
2004-05-11 19:27 d00bring
* src/Query.hs: added FIXME comment to _default
2004-05-11 19:26 d00bring
* test/insert-update-delete.hs: removed redundant assignment in
update
2004-05-10 16:51 d00bring
* test/: THField.hs, th-field-test.hs: THField now exports DBLayout
2004-05-10 16:47 d00bring
* test/th-field-test.hs: added THField test program
2004-05-10 01:36 d00bring
* TODO, BUGS: Added nullable aggregates problem
2004-05-09 23:46 d00bring
* test/max-row.hs: added max-row.hs
2004-05-09 23:14 d00bring
* TODO: added queries in expressions TODO.
2004-05-08 19:06 d00bring
* src/HDBRec.hs: reverted the signature of #, the new, more
restrictive, signature caused problems as reported by eivuokko.
2004-05-04 21:49 d00bring
* test/same-name.hs: added test program for field with same name
2004-05-04 20:34 viblo
* src/BoundedString.hs: "uncommented" the haddock comment
2004-05-04 20:29 dp03-7
* src/BoundedList.hs: fixed haddock parse error
2004-05-04 20:24 viblo
* src/drivers/wxhaskell/WX.hs: Added revision in the haddock
comments
2004-05-04 20:21 viblo
* src/: DBDirect/DBDirect.hs, DBSpec/DBInfo.hs,
DBSpec/DBSpecToDBDirect.hs, DBSpec/DBSpecToDatabase.hs,
DBSpec/DatabaseToDBSpec.hs, DBSpec/PPHelpers.hs,
drivers/hsql/MySQL.hs, drivers/hsql/ODBC.hs,
drivers/hsql/PostgreSQL.hs, drivers/hsql/SQLite.hs: Added
revision in the haddock comments
2004-05-04 20:18 viblo
* src/: BoundedList.hs, BoundedString.hs, DBSpec.hs, Database.hs,
FieldType.hs, Optimize.hs, PrimQuery.hs, Query.hs, Sql.hs: Added
revision in the haddock comments
2004-05-04 19:55 dp03-7
* BUGS: added repeated field name bug
2004-05-04 19:31 dp03-7
* INSTALL: removed hsql version number req
2004-05-04 19:15 dp03-7
* ChangeLog: Updated Changelog
2004-05-04 19:04 dp03-7
* BUGS, TODO: added wxHaskell date problem
2004-05-04 19:04 dp03-7
* NEWS: typo fix
2004-05-04 18:43 dp03-7
* BUGS: added odbc postgre sum type error
2004-05-04 18:34 dp03-7
* test/run-all-tests: don't run default-auto-inc
2004-05-04 18:31 dp03-7
* BUGS: added ODBC MySQL auto_inc nullable problem
2004-05-04 15:52 chucky
* ANNOUNCE, ChangeLog, INSTALL, NEWS: Prepared for release of 0.8
2004-05-04 15:50 forester
* BUGS, TODO, configure.ac: updates for 0.8
2004-05-03 13:15 d00bring
* TODO: Added operator NULL handling issue.
2004-05-02 18:50 chucky
* src/DBSpec/DBSpecToDatabase.hs: Fixed so that Databases generated
do not try to create tables with empty names
2004-05-02 16:15 d00bring
* BUGS, TODO: added pre-1970 bug
2004-05-02 15:43 d00bring
* ChangeLog: Updated ChangeLog
2004-05-02 15:39 d00bring
* src/DBSpec/DBSpecToDBDirect.hs: Inverted hasName condition. It
caused only nameless tables to be printed, not the other way
around.
2004-05-01 19:38 d00bring
* test/THField.hs: Added template haskell field creation module.
2004-05-01 19:00 d00bring
* BUGS: added access timestamp bug
2004-05-01 18:29 d00bring
* src/: HDBRec.hs, Query.hs: more record clean-up and
generalization
2004-05-01 16:47 d00bring
* FIXED: Added dbinfo upper case identifier bug to FIXED. Fixed a
typo.
2004-05-01 16:33 d00bring
* src/: DBLayout.hs, HDBRec.hs, HaskellDB.hs, Query.hs: Moved # to
HDBRec. Added revision tags.
2004-04-30 02:59 viblo
* src/BoundedList.hs: Added haddock comments for the functions.
2004-04-29 19:32 chucky
* BUGS: Forgot to mention I had fixed a bug
2004-04-29 19:32 chucky
* src/DBSpec/: DBInfo.hs, DBSpecToDBDirect.hs: [no log message]
2004-04-29 19:31 chucky
* BUGS:
Fixed two bugs
2004-04-28 20:12 d00bring
* src/drivers/hsql/Common.hs: Added a bunch of type signatures that
the versose warnings complained about. Added revision tag.
2004-04-28 20:06 d00bring
* src/Sql.hs: Added a bunch of type signatures to fix some warnings
produced by --enable-verbose-warnings.
2004-04-28 19:59 d00bring
* src/PrimQuery.hs: added type signatures to showRelOp, showUnOp,
showBinOp and showAggrOp, to fix some warnings produces with
--enable-verbose-warnings.
2004-04-28 02:58 viblo
* src/HaskellDB.hs: Added type sign. for the show funcs so they are
visible in the haddocked doc
2004-04-27 23:49 d00bring
* BUGS: added MS Access Memo field bug.
2004-04-27 21:32 d00bring
* test/: Makefile, run-all-tests, test-sum.hs: Added test-sum,
which tests that the the sum of a column of ints can be treated
as an int (did not work with MySQL and older hsql versions).
2004-04-27 21:28 d00bring
* src/Database.hs: Added Show, ReadRecRow and Read instances for
Row.
2004-04-27 20:08 d00bring
* configure.ac: Added --enable-hsql flag
2004-04-27 20:07 d00bring
* BUGS, TODO: Added DBDirect uppercase DBInfo name bug.
2004-04-27 15:04 chucky
* src/DBSpec/DBSpecToDBDirect.hs: Hopefully fixed the "missing
field" bug in DBDirect.
2004-04-27 00:46 d00bring
* BUGS, TODO: Added empty tables / table name bug
2004-04-24 14:58 d00bring
* src/HDBRec.hs: Added explicit export list, added some haddock
2004-04-24 14:35 d00bring
* src/DBLayout.hs, src/Database.hs, src/HDBRec.hs, src/Query.hs,
src/DBSpec/DBSpecToDBDirect.hs,
test/hardcoded-layout-simple-query.hs, test/run-all-tests: gave
HBDRec types non-hdb-specific names
2004-04-23 02:46 viblo
* src/Sql.hs: Added some haddock comments
2004-04-22 20:44 d00bring
* Makefile: stop running autoconf automatically, gets messy when
you just want ot make clean
2004-04-22 20:41 d00bring
* configure.ac: fixed hugs hsql path flags when prefix not set
2004-04-22 20:27 d00bring
* src/HDBRec.hs: added fundep to SelectField
2004-04-22 17:32 dp03-7
* config.mk.in, configure.ac: Configure now finds HSQL for Hugs
using --prefix
2004-04-08 19:57 d00bring
* src/Query.hs: reduced precedence of like to be lower than !
2004-04-08 18:10 d00bring
* src/HDBRec.hs, doc/descript: Minor documentation updates.
2004-04-08 15:16 d00bring
* test/: CustomSql.hs, custom-test.hs: Added some examples of using
cusom SQL operators
2004-04-08 15:05 d00bring
* src/Database.hs: change implementation of !. to use !, change !
to use selectField directly
2004-04-08 14:59 d00bring
* src/Database.hs: Removed unneccessary HasField constraint from
selection operators
2004-04-08 13:38 d00bring
* test/quickcheck.hs: More quickcheck property ideas
2004-04-08 13:37 d00bring
* test/run-all-tests: Make hugs use a bigger heap, needed for
join-without-restrict
2004-04-08 13:33 d00bring
* test/default-auto-inc.hs: stupid monomorphism restriction
2004-04-08 13:22 d00bring
* test/big-test.hs: Print PrimQuery for UNION
2004-04-08 13:22 d00bring
* test/run-all-tests: halt on errors
2004-04-08 13:20 d00bring
* BUGS, TODO, src/Sql.hs: Identified source of table alias clashes
2004-04-08 13:01 d00bring
* src/Optimize.hs: Allow merging projects through all binaray
relational operators, except Times where it does not work.
2004-04-08 12:54 d00bring
* BUGS: added repeated table alias problem
2004-04-08 12:51 d00bring
* test/big-test.hs: Print UNION query before running it
2004-04-08 12:48 d00bring
* src/: Database.hs, drivers/hsql/Common.hs,
drivers/wxhaskell/WX.hs: Backends can now retrieve Bools
2004-04-08 12:31 d00bring
* test/run-all-tests: don't run lazy, it makes mysqld crazy
2004-04-08 12:29 d00bring
* test/run-all-tests: run-all-tests now runs all tests
2004-04-08 12:29 d00bring
* test/null-and-case.hs: Changed name of DBDirect module used
2004-04-08 12:26 d00bring
* test/current-time.hs: fixed some type errors, forgot to compile
before checking in earlier
2004-04-08 12:12 d00bring
* BUGS, FIXED, TODO: Moved queries without tables and join without
restrict (that was not actually the problem) to FIXED.
2004-04-08 12:08 d00bring
* src/Optimize.hs, test/Makefile, test/current-time.hs,
test/default-auto-inc.hs, test/join-without-restrict.hs: Fixed
bugs in Optimize that messed up queries without a table and
certain joins.
2004-04-08 11:59 d00bring
* src/PrimQuery.hs: Changed attributes to use union instead of ++
for times
2004-04-08 01:38 d00bring
* test/default-auto-inc.hs: now gets last_insert_id()
2004-04-08 01:37 d00bring
* TODO: added query without table TODO
2004-04-08 01:17 d00bring
* test/current-time.hs: Cleaned up a little.
2004-04-08 00:01 d00bring
* test/join-without-restrict.hs: added program that demonstrates
the join without restrict bug
2004-04-07 21:57 d00bring
* test/quickcheck.hs: Chnaged name of test function, conflicted
with a QuickCheck function
2004-04-07 21:52 chucky
* src/GenericConnect.pphs: Damnit I introduced a bug, fixed now
2004-04-07 21:48 chucky
* src/GenericConnect.pphs: Created clearer error messages, and did
some cleaning up
2004-04-07 21:44 d00bring
* test/quickcheck.hs: first step towards quickcheck properties
2004-04-07 21:16 d00bring
* src/HDBRec.hs: Added deriving Eq to record types.
2004-04-07 20:42 d00bring
* src/: HDBRec.hs, Query.hs: Removed some unused code.
2004-04-07 20:11 d00bring
* src/HDBRecUtils.hs: Removed HDBRecUtils.hs
2004-04-07 20:10 d00bring
* src/DBLayout.hs, src/Database.hs, src/HDBRec.hs,
src/HaskellDB.hs, src/Query.hs, src/common.mk,
test/current-time.hs, test/hardcoded-layout-simple-query.hs,
test/run-all-tests: Removed HDBRecUtils and put its pieces where
they makethe most sense.
2004-04-07 19:42 d00bring
* BUGS, FIXED, TODO: Moved default value support to FIXED.
2004-04-07 19:34 d00bring
* BUGS, FIXED, TODO, src/Database.hs, src/HDBRecUtils.hs,
src/HaskellDB.hs, src/Query.hs, test/Makefile,
test/default-auto-inc.hs, test/higher-order.hs: Added support for
default values in insert. Restricted use of aggregate expressions
to project.
2004-04-07 16:39 chucky
* src/: DBLayout.hs, common.mk, DBSpec/DBSpecToDBDirect.hs: [no log
message]
2004-04-07 16:39 chucky
* TODO: Fixed the following TODO: * put all imports that
DbDirect-generated files need in a module by itself, so that
generated code only needs to import that module. /Bjorn
2004-04-07 14:36 forester
* src/: BoundedList.hs, BoundedString.hs, drivers/hsql/Common.hs:
Added size 65535 to boundedstring. Also added more SqlTypes
2004-04-07 14:35 d00bring
* src/DBSpec/DBSpecToDBDirect.hs: Moved $$ after contextStackPragma
into the commented-out part to fix a parse error.
2004-04-07 10:31 chucky
* test/dbspec.hs: removed the easter egg
2004-04-06 13:15 chucky
* src/DBSpec/DBSpecToDBDirect.hs: Tried adding -fcontext-stackXX as
a pragma at the top of generated files, but it didn't work. The
code remains if it starts to work some day. :)
2004-04-06 13:14 chucky
* BUGS: Tried adding -fcontext-stackXX as a pragma at the top of
generated files, but it didn't work.
2004-04-05 12:09 chucky
* BUGS: Wrote something about SqlBit
2004-04-05 11:57 chucky
* src/drivers/: hsql/Common.hs, wxhaskell/WX.hs: [no log message]
2004-04-05 11:57 chucky
* src/FieldType.hs: Tried adding support for SqlBit, but gave up
because of db incompatibilities
2004-04-04 16:59 d00bring
* BUGS: fixed simple typo
2004-04-01 22:46 d00bring
* BUGS: added LIKE/ILIKE problem
2004-03-31 21:57 d00bring
* ChangeLog: Updated ChangeLog for release
2004-03-31 21:56 forester
* NEWS: Added news for version 0.7
2004-03-31 21:55 forester
* ANNOUNCE: Updated to version 0.7
2004-03-31 21:52 d00bring
* INSTALL: added HSQL-MySQL windows problem
2004-03-31 21:27 d00bring
* ChangeLog: Updated ChangeLog
2004-03-31 21:26 forester
* ANNOUNCE, NEWS: Changed NEWS and ANNOUNCE to 0.7
2004-03-31 21:16 d00bring
* test/: Makefile, big-test-create-tables.hs, big-test.hs, lazy.hs,
run-all-tests, run-big-test: Cleaned up test programs. Changed
big-test to use dbspec.
2004-03-31 21:09 d00bring
* NEWS: Added 0.7 release.
2004-03-31 20:54 d00bring
* TODO: Removed DbDirect multiple driver TODO.
2004-03-31 20:51 d00bring
* BUGS: Removed Hugs not working with wxHaskell enabled.
2004-03-31 20:49 d00bring
* INSTALL: Fixed typos, added SQLite and wxHaskell info.
2004-03-31 20:45 d00bring
* aclocal.m4, configure.ac: Fixed disabling ghc/hugs
2004-03-31 20:23 d00bring
* configure.ac: Changed version to 0.7.
2004-03-31 20:09 d00bring
* Makefile: Fixed install targets for separate compilation dirs.
2004-03-31 20:06 d00bring
* config.mk.in, configure.ac, rules.mk, src/Makefile.ghc,
src/Makefile.hugs, src/common.mk: Separate module tests in
configure.ac for ghc and hugs.
2004-03-31 19:04 d00bring
* config.mk.in, src/Makefile, src/Makefile.ghc, src/Makefile.hugs,
src/common.mk, src/DBDirect/Makefile: Made separate build dirs
for ghc and hugs.
2004-03-31 16:48 viblo
* doc/api/Makefile: Added the wx-driver to the doc generation
2004-03-31 11:25 chucky
* src/DBSpec/DBSpecToDBDirect.hs: Cosmetic changes
2004-03-31 01:12 viblo
* src/: BoundedString.hs, DBSpec.hs, Database.hs, FieldType.hs,
HDBRecUtils.hs, Sql.hs, drivers/hsql/MySQL.hs,
drivers/hsql/ODBC.hs, drivers/hsql/SQLite.hs, DBSpec/DBInfo.hs,
DBSpec/DBSpecToDBDirect.hs, DBSpec/DBSpecToDatabase.hs,
DBSpec/PPHelpers.hs: Changed to non-portable in all files
2004-03-29 17:48 forester
* configure.ac: Bug in configure disabled hsql if hugs was disable
2004-03-29 14:03 chucky
* src/DBSpec.hs, src/DBSpec/DBInfo.hs,
src/DBSpec/DBSpecToDBDirect.hs, test/dbspec.hs: DBInfos can now
be pretty printed
2004-03-29 09:41 chucky
* src/: DBSpec/DBSpecToDatabase.hs, drivers/hsql/Common.hs,
drivers/wxhaskell/WX.hs: [no log message]
2004-03-29 09:41 chucky
* src/: Database.hs, GenericConnect.pphs, Sql.hs: Fixed various
bugs that Björn found
2004-03-28 16:20 forester
* configure.ac: tweaking configure.ac, no needs for absolute path
whatsoever. It absolute path for ghc is given, check for ghc-pkg
in same path first
2004-03-28 13:05 forester
* configure.ac: If HSQL does not support HUGS, don't build for HUGS
2004-03-27 19:13 forester
* configure.ac: No need for explicit path when using
--with-ghc/hugs Maybe not the best solution
2004-03-26 00:20 d00bring
* BUGS, FIXED, TODO: Removed fromNull and _case from BUGS and TODO
2004-03-25 23:43 d00bring
* TODO, src/drivers/wxhaskell/WX.hs: Added TODO about making the
wxhaskell driver lazy
2004-03-25 23:40 d00bring
* src/Query.hs: removed obsolote comment about showing of True and
False
2004-03-25 23:35 d00bring
* src/Query.hs, test/null-and-case.hs, src/HaskellDB.hs,
src/PrimQuery.hs: Added _case and fromNull constructs.
2004-03-25 21:44 d00bring
* config.mk.in, src/Makefile, src/DBSpec/Makefile,
src/drivers/hsql/Makefile, src/drivers/wxhaskell/Makefile:
Cleaned up and simplified build system.
2004-03-25 21:39 chucky
* src/DBSpec/: DBInfo.hs, DBSpecToDatabase.hs: grr more bugs
2004-03-25 21:21 chucky
* src/DBSpec/DBInfo.hs: Fixed a stupid parse error
2004-03-25 21:10 chucky
* src/DBSpec/: DBInfo.hs, DBSpecToDBDirect.hs, DBSpecToDatabase.hs:
Hopefully fixed circular deps this time
2004-03-25 20:57 chucky
* src/DBSpec/: DBInfo.hs, DBSpecToDatabase.hs, DatabaseToDBSpec.hs,
Makefile: [no log message]
2004-03-25 20:57 chucky
* src/DBSpec.hs: Fixed circular dependencies, I hope
2004-03-25 09:01 d00bring
* test/: Makefile, TestConnect.hs, TestConnect.pphs: Changed
TestConnect to use GenericConnect.
2004-03-25 08:53 d00bring
* test/: big-test-create-tables.hs, big-test.hs, current-time.hs,
date-types.hs, hardcoded-layout-simple-query.hs, higher-order.hs,
html-users-list.hs, insert-update-delete.hs, join-and-aggr.hs,
test-bounded.hs, top.hs, transaction.hs: Changed !. to ! in all
test programs
2004-03-24 21:48 d00bring
* BUGS, TODO: added CASE and fromNullable problems
2004-03-24 18:27 d00bring
* src/Database.hs, src/drivers/hsql/Common.hs,
src/drivers/wxhaskell/WX.hs, test/current-time.hs: Changed type
of query results to Row r (using HDBRecRow was an ugly hack)
2004-03-24 12:19 chucky
* test/dbspec.hs: Used for testing generating from database
2004-03-24 12:15 chucky
* src/Sql.hs: oops forgot something
2004-03-24 12:14 chucky
* src/: FieldType.hs, Sql.hs: Fixed a bug in create and drop table
2004-03-24 11:54 chucky
* src/GenericConnect.pphs: Fixed a bug
2004-03-24 11:13 chucky
* src/: HaskellDB.hs, Makefile: GenericConnect added
2004-03-24 11:13 chucky
* src/DBDirect/: DBDirectCommon.pphs, DBDirect.hs, Makefile: [no
log message]
2004-03-24 11:13 chucky
* src/GenericConnect.pphs: Rearranged and moved. This is the old
DBDirectCommon, but it is now part of the standard lib
2004-03-24 10:31 chucky
* src/DBSpec.hs: DBSpec.hs now exports everything useful in its
submodules
2004-03-24 10:30 d00bring
* src/Database.hs: fixed stupid constraint problem in !.
2004-03-24 10:25 chucky
* src/DBSpec/DBSpecToDatabase.hs: Ready for testing?
2004-03-23 22:49 d00bring
* src/: Database.hs, HDBRec.hs, HDBRecUtils.hs, Query.hs,
drivers/hsql/Common.hs, drivers/wxhaskell/WX.hs: Overloaded ! to
selection on both relations in a query and query results.
2004-03-23 20:13 d00bring
* configure.ac: more configure clean-up
2004-03-23 20:08 d00bring
* config.mk.in, configure.ac, test/run-big-test: some clean-up of
configure.ac. added BUILD_DOC variable.
2004-03-23 19:12 d00bring
* configure.ac: Removed all the old cruft for looking for libraries
and headers.
2004-03-22 23:54 d00bring
* BUGS: added list of unsupported features
2004-03-22 23:45 d00bring
* BUGS, FIXED: Moved error catching bug from BUGS to FIXED
2004-03-22 23:38 d00bring
* test/transaction.hs: catch errors from all db functions
2004-03-22 23:37 d00bring
* src/drivers/: hsql/Common.hs, wxhaskell/WX.hs: Fixed drivers to
catch exceptiosn in all top-level calls to driver functions
2004-03-22 23:24 d00bring
* src/DBSpec/DBSpecToDatabase.hs: Changed mapM to mapM_ to fix a
type error.
2004-03-22 23:03 d00bring
* BUGS: added top-level-only HSQL error catching
2004-03-22 21:49 d00bring
* TODO: added some things from BUGS to the TODO
2004-03-22 21:32 d00bring
* test/: big-test-create-tables.hs, big-test.hs: enabled timestamp
tests
2004-03-22 21:26 d00bring
* BUGS: added info about wxhaskell not working in Hugs
2004-03-22 17:25 chucky
* src/DBSpec/DBSpecToDatabase.hs: incremental change. Still no
useful code
2004-03-22 16:48 d00bring
* BUGS: Added info about GROUP BY problem.
2004-03-22 16:40 d00bring
* test/: Makefile, higher-order.hs: Added test program that uses a
higher-order query.
2004-03-22 16:40 d00bring
* src/Optimize.hs: Fixed optimization that put aggregate
expressions in restricts.
2004-03-22 16:08 d00bring
* BUGS: added aggregates in restrict problem
2004-03-22 16:06 chucky
* src/drivers/wxhaskell/WX.hs: [no log message]
2004-03-22 16:06 chucky
* src/: Database.hs, Sql.hs, DBSpec/DBSpecToDatabase.hs,
drivers/hsql/Common.hs: Added support for creating and dropping
databases and tables
2004-03-22 16:02 chucky
* BUGS: Added a bug in the wxHaskell driver
2004-03-22 13:16 chucky
* TODO: We've done some things on the list now, most notably
wxHaskell support
2004-03-22 13:13 chucky