I'd like to design my dataset's in VS2005 in such a way that I develop at design-time using SQL2005, however I'll have the option of replacing the connection, sqladapter and command objects in the generated source code with another database's (like mysql, etc.)
Since the schemas are identical across the different database kinds, the key here is making sure that the generated SQL is ANSI compliant. Right off the bat the square brackets around table names cause problems. Is there anyway to tell VS2005 to use the ANSI compliant quotes instead
Thanks

The syntax of the SQL the DataSet Design Surface generates
aping
AFAIK, the only one that supports client side filtering is Deklarit and that's because they specifically build up on the .NET datasets instead of writing a whole new container layer.
A lot of the apps I write need a disconnected processing ability, ie load the data from the db and then perform a lot of data processing (here is where the filtering comes in handy) and then return a processed dataset for the client to consume.
Traditionally this logic is taken care of in stored procedures, however I'd like to stay cross-db, so I'd like to implement it at the .NET code layer with as little calls as possible to the db.
DavidDawkins
EmSOFT
thanks for your recommendation. I wasn't aware of the client side filtering capabilities of llblgen pro. I'll definitely take a look.
MA Tester
Josh
jskim
Best of Luck,
Josh Lindenmuth