SQL is a language. Some folks also refer to MySQL or MS SQL Server as "SQL". Not sure what you are looking to convert. Best guess I can make is either to move from a dbase/Access database to a more high powered MySQL or SQL Server database, or you're looking to make an application less dependent on a specific database and more generic so it works with many databases on the backend.
Typically, in order to gain database independence, you either need to code SQL for each database you want your application to support, or use the most generic form of SQL to do insert, select, update and delete statements. The latter normally prevents you from taking advantage of any database specific features/functionality.
Main Topics
Browse All Topics





by: mistaeverlyPosted on 2006-06-24 at 01:59:57ID: 16974565
I'm not sure I entirely understand your question. Dbase is a database, while SQL is a language.
I guess the question is, what are you trying to do with the "SQL" once you get it out of dbase?