vote up 5 vote down star
1

Is there an OR/M (object relational mapper) that can be used in Classic ASP? Even a simplified class object would be a great help in handling simple CRUD tasks.

Yes I know ASP.NET has many and I use a few of them for ASP.NET sites. However this is a legacy e-commerce site that uses ASP/VBScript and a total rewrite it not a possibility.

flag

76% accept rate

3 Answers

vote up 3 vote down check

You could use .net through COM Interop, and do your ORM in .net. Another option would be to use Code Smith, or MyGeneration and generate VB6 classes.

Here's some VB6 ORM I have not used or researched any of these: http://www.sparxsystems.com.au/products/ea/features.html

If I find anymore Ill update

link|flag
thanks! I appreciate the edits and links. – Brian Boatright May 5 at 14:13
2  
No problem your best bet is still build the stuff in .net and use interop, this will start you on the path to migration. I would recommend you try and build everything in .net actually and use various bridging techniques. We had a classic asp app which was a beast but was able to bring .net to various backend systems and even the front end (Through IFrames) – Josh May 5 at 14:16
vote up 2 vote down

There is nothing stopping you from using C# or VB.Net and COM Interop to create a DLL that could be read by your classic ASP page. We have done that several times.

MSDN has two good tutorials on COM Interop.

link|flag
thanks for the tutorial links. – Brian Boatright May 5 at 14:13
vote up -1 vote down

I think IMVHO that ORM is a good choice for small projects but I prefer the easy and direct ODBC connections for larger ones.

All the (good) features of the ORMs can be provided by good RDBMS like Oracle or SQL Server.

link|flag

Your Answer

Get an OpenID
or

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