Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 forms in sql

Author  Topic 

cerberus478
Starting Member

2 Posts

Posted - 2010-04-06 : 07:54:40
Hi

I'm new to sql and I would like to know how to create forms in sql 2000.

Thank you

DBA in the making
Aged Yak Warrior

638 Posts

Posted - 2010-04-06 : 08:02:51
User interfaces are a part of the application layer. SQL Server doesn't handle this layer. SQL Server is designed to store and retrieve data. To display the data in a form, you'd write an application using something like C# that would connect to SQL Server, request the data you want, and display it in the form.

If you're after a database engine that merges the application and data layer into a single package, then perhaps MS Access is for you. You can use MS Access to create forms, and connect those forms to Access tables. You can also link to other data sources, such as SQL Server.

There are 10 types of people in the world, those that understand binary, and those that don't.
Go to Top of Page

cerberus478
Starting Member

2 Posts

Posted - 2010-04-06 : 08:14:10
Thank you so much. You helped me tons
Go to Top of Page
   

- Advertisement -