What are good naming conventions for linking tables [closed] - naming-conventions

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
What is a good naming convention for naming linking tables? I have a school project and we are modifying the orig data for the project.

Not sure what language you're going for here, but you can try database naming conventions. This link may help you decide.
http://efsavage.com/blog/posts/database_naming_conventions/

Related

Best practices for naming "State" field [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
When a U.S. address is stored, obviously it needs to have the state stored as well. The issue is that the word "State" is a reserved keyword in SQL.
What else should this be named? Are there any alternatives or do people just deal with having to wrap it in square braces?
Personally we prefer to use State as the property name and wrap it in queries or anywhere else there may be reserved word conflicts. We have not had any issues with this in the 3 years I have been on the team. Hope that helps!

Is Go's crypto/tls ready for production environments? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
There was previously a comment regarding the crypto/tls library in Go not being ready for production which has been quoted in many places but I have not seen any real updates on this issue.
http://grokbase.com/p/gg/golang-nuts/139sqq5hw5/go-nuts-re-go-is-production-ready-but-the-crypto-tls-package-isnt
What is the status today?
Since the comment was made both v1.2 and v1.3 of the language has been released. Has the library matured? Is it considered production ready?

Why would you choose Squeak over Pharo today? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am trying to understand the uses of both. Already I have seen stuff on the SmalltalkHub doesn't often build on Squeak but always seems to work with Pharo. What are the advantages now in 2014 to choose Squeak and not Pharo?

VBA Code Analysis Tools [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Are there any good code analysis tools for VBA code? I currently utilize MZ Tools, which is quite good at what it does, but am looking for better analysis.
I've not used any of these myself, but they appear to be what you are looking for:
http://www.fmsinc.com/MicrosoftAccess/VBACodingTools.html
FMS's president, Luke Chung, is a (former?) Microsoft MVP and is generally well-regarded.
I used to quite like Aivosto's tools ; http://www.aivosto.com/
They are quite expensive, but also very thorough.

how document changes on a project? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
i am working on some modules,actually change them.
but i don't know how i should document changes in a way that be clear and usefull for future changes.
would someone help me on this issue?
thanks.
If your project is written in one of the languages Doxygen supports, I strongly recommend using that to document your code.
By using Doxygen comments in your source code, you can easily generate documentation in a number of formats by running one command.