0

I have a sql server 7.0 database and I will implement a web service above it. How do I access the data without writing any sql query?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Sessiz Saat
  • 1,079
  • 8
  • 20
  • Any constraints on the language? – Pascal Thivent Oct 26 '09 at 10:21
  • 1
    Since cost seems to be an issue, I could assume that's why you don't have Sql Server 2008, it might be worth looking at moving to either Sql Express, MySql, SqlLite or other similar modern database that is dollar free. – Chris Marisic Oct 26 '09 at 20:39

2 Answers2

1

LLBLGen is compatible with SQL Server 7

Bob
  • 97,670
  • 29
  • 122
  • 130
0

Perhaps you can try NHibernate to map your object model to the relational database model. NHibernate is free, open source, native .NET and supports SQL Server.

Tim Van Laer
  • 2,434
  • 26
  • 30