I often need to verify some simple code before posting, and it's great if I have installed IDE, but what if not? It would be nice to have online free tools for SQL, VB.NET, C# code validation, or maybe even testing.

EDIT
What I actually mean are online live web tools, like JSLint for javascript.

Have you seen any?

link|improve this question

feedback

8 Answers

up vote 14 down vote accepted

OK, what I have found so far googling:

  1. Compilr - very nice online IDE. Currently supported languages: VB.Net, C#.Net, Java

    When are are ready to give us a try, simply follow these steps:

    1. Create an account
    2. Start a project
    3. Modify your code
    4. Download the results!

    so, you'll have to download compiled program to see if it's work correctly. and no debug functionality :(.

  2. SednaSpace - online IDE, ".Net, Java, PHP with Oracle, SQL Server, MySQL and Sybase...". Free, requiring registration. However in the meantime there is some error during registration, so it's not usable for the moment.

  3. CodeIDE - online IDE, "Currently supported languages: BASIC, Pascal, C, C++, JavaScript, Perl, HTML, DBMS MySQL.". Nice, but I can't find the way to register. not there anymore

  4. myLittleAdmin for SQL Server 2000 - live demo version with limited rights but still you can create and drop tables, procedures and functions, select, insert and update data. Great for T-SQL testing!

  5. Mimer SQL Validator - validate SQL for 92, 95 and 2003 standards. No testing.

    Mimer SQL Validator provides you with vital information on your SQL code. Does it conform to Core SQL? Does it use features outside Core SQL? Is your SQL statement incorrect or incomplete? Mimer SQL Validator gives you the low down on your code and helps you by providing a list of lexical units (tokens) and a suggested correction. Also, use the validator to find out exactly which words are vendor-reserved.

  6. Instant SQL Formatter - nice tool, also vill verify your code

    Instant SQL Formatter is a free online sql tidy tool, actually, it not only can beautify your sql but also can turn your formatted sql into html code, so you can post coloured sql code in your blog, forum,wiki and any website easily. In addition to beautifying SQL code, this sql tool can translate SQL code into C#, Java, PHP, DELPHI and other program languages. Another useful feature is find out all database objects such as table, column, function in sql by selecting output format to list database object.

  7. TIDE 2.0 - JavaScript online IDE

  8. SQL Fiddle is a tool for database developers to test out their SQL queries. Separate schema and qury areas, MS SQL, MySql, PostreSql, PL/SQL support.

Also see StackOverflow - Portable Programming IDE

link|improve this answer
2  
Compilr is actually my website :) If you have any suggestions at all, please feel free to drop me a link and I can see what I can do. – Zenox Oct 29 '09 at 10:32
All I can say - your project is great. I've post suggestions to you forum. – Max Gontar Oct 30 '09 at 7:48
feedback

Please try Ideone - the online compiler / debugging tool. It supports C# (mono), SQLite and VB .NET. You can try your codes against input data/ ask others to verify your code etc.

link|improve this answer
feedback

Well, it doesn't include any of the actual languages you mentioned, but I often use codepad to quickly test some code before I post it on SO. It supports quite a few languages, and has a "Run code" option that will attempt to execute, and give you the output.

link|improve this answer
feedback

For C# validation/testing, check out SnippetCompiler. I came across it recently and love it!

I'm not sure about SQL.

link|improve this answer
Thanks Dillie-O, it's great, but I'm searchin for online live web tools, not for VS plugin. – Max Gontar Mar 5 '09 at 20:04
feedback

Not for the languages you asked about, but check out Bespin for html/javascript.

link|improve this answer
Thanks Joel, this kind of tools I'm looking for. – Max Gontar Mar 5 '09 at 20:06
feedback

You might want to check out the web app that I wrote for doing online SQL testing:

http://sqlfiddle.com

It was written to address pretty much the exact need you describe, but only for SQL.

link|improve this answer
Separate schema and qury areas, different sql versions - cool :) – Max Gontar Feb 24 at 11:49
feedback

for c# (or vb) online code execution - check out rundotnet

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.