RainLover
VIP From a land downunder
- Local time
- Today, 11:29
- Joined
- Jan 5, 2009
- Messages
- 5,041
I had a bit of a look around at your DB.
One thing I noticed is that your Code will not compile.
You need to fix this ASAP, Now would be better. The problem is that you code will fail now as you are working on it.
Some error trapping would not go astray either.
You have a table to store Dates. Is this really necessary.
Watch out for your reserved words. Time, Date. Now. are examples of names you should not use as names for any object. You could do a Google on this.
ID is a terrible name for a field. Even if Microsoft use it. Use something similar to the name of the Table.
eg tblCustomer would give you CustomerPK
Hope these little pointers help you out.
One thing I noticed is that your Code will not compile.
You need to fix this ASAP, Now would be better. The problem is that you code will fail now as you are working on it.
Some error trapping would not go astray either.
You have a table to store Dates. Is this really necessary.
Watch out for your reserved words. Time, Date. Now. are examples of names you should not use as names for any object. You could do a Google on this.
ID is a terrible name for a field. Even if Microsoft use it. Use something similar to the name of the Table.
eg tblCustomer would give you CustomerPK
Hope these little pointers help you out.