Testing Center

I haven’t felt much like writing lately, as I don’t seem to have anything special going on in my world. I have wrapped up development on the Testing Center application I have been working on since April. A lot of new things were introduced to me that I never had to work with before. Let me sum up a few of the pros and cons of the tools I used to build this project:

C# / Object Oriented Programming

Pros

  1. Logic mistakes aside, OOP allows code to be written less faulty. Responsibility for this is largely due to auto namespace completion, and typed variables.
  2. User / Company created extensions can be included in your projects

Cons

  1. Typed variables means a lot of code to perform trivial actions. Specifically there is a lot of checking, catching for null strings being converted to integers.
  2. Even simple tasks become complex. Reading a file means instantiating numerous objects before you can begin.
  3. Sessions and hashtables are STILL the fastest way to deal with key / value pairs. Auto name completion wont take advantage of this.

ASP.NET extensions

Pros

  1. Data focused objects allow rapid development of basic functionality. Paging, sorting, inserting, deleting and updating are (almost painless)
  2. It is C#, so there is no crazy learning curve for syntax.

Cons

  1. Deviating from the default actions on data seems at times to almost cancel out the benefits offered by the data objects. Conditional formatting is often dozens of lines of extra code.
  2. Rapid application development seems to have killed my passion. I have never cared less about code I have written.
  3. Instead of focusing on application logic, much time was spent figuring out how to “trick” ASP into making it do what I wanted it to. (Some of this is because it is new to me)
  4. Compared to C#, ASP seemed to have fewer user / company created extensions.

Visual Studio

Pros

  1. It is easily one of the more polished products Microsoft offers.
  2. It is clearly made BY developers for developers.
  3. It can correctly format several document types. (although oddly, not Javascript)
  4. It has a good implementation of auto name completion complete with defaulting to recently used items.
  5. Syntax highlighting, code folding, line numbering, matching bracket highlighting, smart indentions, and many other features you would expect from a code editor.
  6. The “designer” mode auto populates column names in data tables / data sources.

Cons

  1. Like all monolithic programs, it does many things mediocre.
  2. It isn’t specific to web applications, so many features clutter the interface that aren’t applicable.
  3. The 10% of the features that almost everyone use are hidden by the remaining 90% of things that you would never use
  4. The server browser is horrible.
  5. The dataset tool is a gift and a curse. I like the idea of abstracting SQL, but it reformats the queries I would write.
  6. It still has some bugs where things like changing a column’s data type is completely mishandled by the dataset.

SQL Server

Pros

  1. Database creation is completely visual. I didn’t write a single line of code.
  2. Seems fast, and reliable.
  3. Pretty much transparent. None of the major problems I had were because of SQL Server.

Cons

  1. Windows only.
  2. Many functions present in Oracle’s databases are missing
  3. The only “management tool” I saw was the built in Windows tools. It wasn’t pretty. Perhaps others exist.
Advertisement

Leave a Comment

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.