473,804 Members | 3,762 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

REALLY REALLY FUNDAMENTAL QUESTION....Res ponse would be greatly appreciated

I am well versed in MS Access. I now want to set up a SQL database on
my company's server. However there are some pretty basic questions
that I have starting out...I did a bit of searching but didn't see the
direct answers so that is why I am asking here:

In Access, there is a switchboard and forms and reports for a user to
interact with. I don't believe the same exists in SQL. What does one
do in place of those items. For example, what would I need so that a
user can double click on an icon and get an option with 2
buttons......on e would start a form to enter data and the other would
take you to a screen that has 2 or 3 options for reporting. Can this
only be done with code such as VB?

I guess fundamentally I am wondering how a user interacts with SQL?
Are there any programs that can be used or is it all custom made?

And along that line, how does one ENTER data if no form function is
available? How does one get reports without the report feature?

Any help would be greatly appreciated. And just to be clear, I am not
looking for someone to write code for me. I am interested in
understanding how it is used. I'll do my own research to get whatever
interface is needed based on your responses.

thanks again
Oct 23 '08 #1
5 1632
Access is a complete package, with both a database (of sorts) and the
tools to build a front end for the user.

SQL Server is just a database engine. It stores data, and accepts SQL
commands (INSERT, UPDATE, DELETE, SELECT, etc.) against that data. It
has NONE of the front-end features that allows Access to provide the
user interface. There are no buttons to program in SQL Server, no
grids or pull down lists. SQL Server is strictly the back end
database.

So, to use SQL Server you need another tool with which to write the
front end. That tool can be Access, VB, C#, or any number of other
programming languages and systems, including web-based tools that
don't put anything at the client.

So what does SQL Server buy you? The freedom to use those other
languages. Improved salability both in database size and number of
users. More robust integrity. A far more powerful implementation of
SQL, though with limits that will sometimes frustrate an Access
programmer.

Roy Harvey
Beacon Falls, CT

On Wed, 22 Oct 2008 22:47:41 -0400, BURL ives <e_*****@hotmai l.com>
wrote:
>I am well versed in MS Access. I now want to set up a SQL database on
my company's server. However there are some pretty basic questions
that I have starting out...I did a bit of searching but didn't see the
direct answers so that is why I am asking here:

In Access, there is a switchboard and forms and reports for a user to
interact with. I don't believe the same exists in SQL. What does one
do in place of those items. For example, what would I need so that a
user can double click on an icon and get an option with 2
buttons......o ne would start a form to enter data and the other would
take you to a screen that has 2 or 3 options for reporting. Can this
only be done with code such as VB?

I guess fundamentally I am wondering how a user interacts with SQL?
Are there any programs that can be used or is it all custom made?

And along that line, how does one ENTER data if no form function is
available? How does one get reports without the report feature?

Any help would be greatly appreciated. And just to be clear, I am not
looking for someone to write code for me. I am interested in
understandin g how it is used. I'll do my own research to get whatever
interface is needed based on your responses.

thanks again
Oct 23 '08 #2
"BURL ives" <e_*****@hotmai l.comwrote in message
news:ms******** *************** *********@4ax.c om...
>I am well versed in MS Access. I now want to set up a SQL database on
my company's server. However there are some pretty basic questions
that I have starting out...I did a bit of searching but didn't see the
direct answers so that is why I am asking here:

In Access, there is a switchboard and forms and reports for a user to
interact with. I don't believe the same exists in SQL. What does one
do in place of those items. For example, what would I need so that a
user can double click on an icon and get an option with 2
buttons......on e would start a form to enter data and the other would
take you to a screen that has 2 or 3 options for reporting. Can this
only be done with code such as VB?

I guess fundamentally I am wondering how a user interacts with SQL?
Are there any programs that can be used or is it all custom made?

And along that line, how does one ENTER data if no form function is
available? How does one get reports without the report feature?

Any help would be greatly appreciated. And just to be clear, I am not
looking for someone to write code for me. I am interested in
understanding how it is used. I'll do my own research to get whatever
interface is needed based on your responses.

thanks again
Access is an application development tool, not a DBMS. SQL Server is a DBMS.
So you'll need to choose an application development tool or language and
presentation tier. Could be Access, .NET, C++, php, ...

--
David Portas


Oct 23 '08 #3
BURL ives (e_*****@hotmai l.com) wrote:
: I am well versed in MS Access. I now want to set up a SQL database on
: my company's server. However there are some pretty basic questions
: that I have starting out...I did a bit of searching but didn't see the
: direct answers so that is why I am asking here:
...
: I guess fundamentally I am wondering how a user interacts with SQL?
: Are there any programs that can be used or is it all custom made?
The most basic tool is probably the program "sqlcmd".

It connects to the database, it prompts you to type SQL commands, and then
it displays the output of the commands.

The SQL language has many commands, the most basic are SELECT, INSERT,
UPDATE, DELETE, and before you can enter data you need a table to put it
in, and the command for that is CREATE TABLE.

You need to read a book on how to use those commands, they are very easy
to use, just like DOS commands are very easy to use - in other words a
child can do it once they know how, but you can't guess how to do it if
you don't already know.

No matter what tool you end up using, all they actually do is exactly the
same as what you do with sqlcmd. For example if you enter data into a
form then the form converts that into an INSERT command and sends that
insert command to the database, exactly the same as if you had used sqlcmd
and typed the command by hand yourself. (I simplified slightly, but
basically this is true).

Since every tool uses SQL to interact with the database, it is useful to
know how to use it yourself, therefore it is useful to know how to use a
program like sqlcmd.

Oct 23 '08 #4
Thank you to all who responded so quickly. It truly is appreciated.

With my involvement in Access queries, I became familiar with SQL
commands so it seems like that will be of benefit to me.

I guess I need to decide what to use as the front end to the SQL
database. If I go with an Access interface, I'll have the familiarity
and convenience that I know. Using the web browser. the advantage is
everyone has it and for me personally it will open up new areas of
development I have not dealt with before. However it seems like my
programming skills will need sharpening with the web interface.

Now at least I know what the scope of this project will be. I will
spend the next few days researching both Access and a web interface.
I'm sure I'll be back with more question later.

Thanks again everyone
On Wed, 22 Oct 2008 23:01:58 -0400, "Roy Harvey (SQL Server MVP)"
<ro********@sne t.netwrote:
>Access is a complete package, with both a database (of sorts) and the
tools to build a front end for the user.

SQL Server is just a database engine. It stores data, and accepts SQL
commands (INSERT, UPDATE, DELETE, SELECT, etc.) against that data. It
has NONE of the front-end features that allows Access to provide the
user interface. There are no buttons to program in SQL Server, no
grids or pull down lists. SQL Server is strictly the back end
database.

So, to use SQL Server you need another tool with which to write the
front end. That tool can be Access, VB, C#, or any number of other
programming languages and systems, including web-based tools that
don't put anything at the client.

So what does SQL Server buy you? The freedom to use those other
languages. Improved salability both in database size and number of
users. More robust integrity. A far more powerful implementation of
SQL, though with limits that will sometimes frustrate an Access
programmer.

Roy Harvey
Beacon Falls, CT

On Wed, 22 Oct 2008 22:47:41 -0400, BURL ives <e_*****@hotmai l.com>
wrote:
>>I am well versed in MS Access. I now want to set up a SQL database on
my company's server. However there are some pretty basic questions
that I have starting out...I did a bit of searching but didn't see the
direct answers so that is why I am asking here:

In Access, there is a switchboard and forms and reports for a user to
interact with. I don't believe the same exists in SQL. What does one
do in place of those items. For example, what would I need so that a
user can double click on an icon and get an option with 2
buttons...... one would start a form to enter data and the other would
take you to a screen that has 2 or 3 options for reporting. Can this
only be done with code such as VB?

I guess fundamentally I am wondering how a user interacts with SQL?
Are there any programs that can be used or is it all custom made?

And along that line, how does one ENTER data if no form function is
available? How does one get reports without the report feature?

Any help would be greatly appreciated. And just to be clear, I am not
looking for someone to write code for me. I am interested in
understandi ng how it is used. I'll do my own research to get whatever
interface is needed based on your responses.

thanks again
Oct 23 '08 #5
RRR
On Oct 23, 4:29*am, BURL ives <e_ro...@hotmai l.comwrote:
Thank you to all who responded so quickly. *It truly is appreciated.

With my involvement in Access queries, I became familiar with SQL
commands so it seems like that will be of benefit to me.

I guess I need to decide what to use as the front end to the SQL
database. *If I go with an Access interface, I'll have the familiarity
and convenience that I know. *Using the web browser. the advantage *is
everyone has it and for me personally it will open up new areas of
development I have not dealt with before. *However it seems like my
programming skills will need sharpening with the web interface.

Now at least I know what the scope of this project will be. *I will
spend the next few days researching both Access and a web interface.
I'm sure I'll be back with more question later.

Thanks again everyone

*On Wed, 22 Oct 2008 23:01:58 -0400, "Roy Harvey (SQL Server MVP)"

<roy_har...@sne t.netwrote:
Access is a complete package, with both a database (of sorts) and the
tools to build a front end for the user.
SQL Server is just a database engine. *It stores data, and accepts SQL
commands (INSERT, UPDATE, DELETE, SELECT, etc.) against that data. *It
has NONE of the front-end features that allows Access to provide the
user interface. *There are no buttons to program in SQL Server, no
grids or pull down lists. *SQL Server is strictly the back end
database.
So, to use SQL Server you need another tool with which to write the
front end. *That tool can be Access, VB, C#, or any number of other
programming languages and systems, including web-based tools that
don't put anything at the client.
So what does SQL Server buy you? *The freedom to use those other
languages. *Improved salability both in database size and number of
users. *More robust integrity. *A far more powerful implementation of
SQL, though with limits that will sometimes frustrate an Access
programmer.
Roy Harvey
Beacon Falls, CT
On Wed, 22 Oct 2008 22:47:41 -0400, BURL ives <e_ro...@hotmai l.com>
wrote:
>I am well versed in MS Access. *I now want to set up a SQL database on
my company's server. *However there are some pretty basic questions
that I have starting out...I did a bit of searching but didn't see the
direct answers so that is why I am asking here:
>In Access, there is a switchboard and forms and reports for a user to
interact with. *I don't believe the same exists in SQL. *What does one
do in place of those items. *For example, what would I need so that a
user can double click on an icon and get an option with 2
buttons......o ne would start a form to enter data and the other would
take you to a screen that has 2 or 3 options for reporting. *Can this
only be done with code such as VB?
>I guess fundamentally I am wondering how a user interacts with SQL?
Are there any programs that can be used or is it all custom made?
>And along that line, how does one ENTER data if no form function is
available? *How does one get reports without the report feature?
>Any help would be greatly appreciated. *And just to be clear, I am not
looking for someone to write code for me. *I am interested in
understandin g how it is used. *I'll do my own research to get whatever
interface is needed based on your responses.
>thanks again- Hide quoted text -

- Show quoted text -
In your research, be sure and take a look at MS's Visual Web Developer
2006, Express version. It lets you develop a web-based front-end to
any one of a number of back-end data sources (including SQL Server and
Access mdb).

If you are considering web-based approaches you will need to get your
arms around the notion that the web client is "stateless" , i.e., you
must programatically preserve the state of your application each time
you make a round trip to the server. Also, in Access you are
accustomed to being able to enter a value into a field and it that
field is automatically and immediately updated in the database. In
the web-based approach, the pattern is to collect all of the relevant
input data for a transaction into the appropriate fields in the client
and then send them via a single transaction transaction to the db for
update.
Oct 23 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3357
by: D Benfer | last post by:
Hi all, Im a bit thrown by curl. I want to submit some order data on an ecommerce site via a form to a php page, where the data is saved to a database. Then I want to use curl to submit the form data I just saved (and redirect the user) to my secure credit card gateway. Problem is, they have their own secure payment screen where the credit card information is entered. I can't just retrieve the variable with a transaction...
2
1618
by: What-a-Tool | last post by:
I've got a bit of experience coding in VB.Net and VBA, but as I don't have the software to debug an ASP web application, I'm having a bit of trouble figuring out exactly how my code is performing/behaving on the server. Because of this, I'm kinda unsure about the performance/function of Session.Abandon Below is a trimmed down version of some code that I'm using to redirect to my home page. Now in a standard VB/VBA module, my code would...
1
2743
by: Kirok | last post by:
Hey Everyone, Thanks for reading, heres what I'm trying to do I have an array of say 10 items each item contains the text / description for a room. Now I would like to create a class (lets call it BookSection) this class will display the text for the current room the user is in and then have links to other rooms (left, right, east, west, etc) then dependant upon the choice made by the user will move to the new room and display the text
2
1116
by: Paul M | last post by:
hi there, i have an <asp:button> control on my webpage that when clicked, i want to redirect the HTTP request to an EXE file, but instead of actually directing the browser and address bar to there, i only want the SaveAs box to appear, to download the file, and the actual web page to remain the same. VB.NET example would be greatly appreciated. Thanks,
3
1238
by: matthias s. | last post by:
Hi there, I'm building a usercontrol to provide language selection options. The availabe languages are retrieved dynamically and should be shown as flags (ImageButtons) in a table. But I've got a problem with formatting the whole thing. I'm using Response.Write statements to write the table. Here is a code snippet (the fat logic is omitted and I hope the variable names are selfexplanatory):
30
3012
by: valley | last post by:
Hello, Here I try to reform my question from the thread below which was closed as it got too complicated. http://www.thescripts.com/forum/threadnav562674-4-10.html The Forum answer to my question about summing up values in one field to be used as default in a second field showed that a search needs to be done based on base field (in this case NAME of customer). However since I use a COMBO BOX to enter this NAME field values and then...
0
905
by: Chris.Mcrae | last post by:
Hello and happy holidays all, I have a quick question. I just playing with interoperability, so I created a java web service (using Axis), which I am able to access with a java client, but when I try to access it with a .NET client (just an ..aspx page-I used wsdl.exe to generate the .cs file, and csc.exe to generate the dll), I get a System.NullReferenceException. Strange thing though; when using the .NET client, it is getting through...
8
2156
by: =?Utf-8?B?TFc=?= | last post by:
Hello! I am just learning about forms authentication so please excuse this basic question. I am using .NET 1.1 and C#. I have created my web.config file and my login.aspx and the associated cs file using examples on MSDN. I have created a FormsAuthenticationTicket and cookie and added the cookie to the response and then set the SetAuthCookie etc. When I go to the redirected page, I am not sure how to read the cookie value so I know who...
6
3557
by: mike.gilmore | last post by:
Hi, I'm trying to move all my custom validation code into the master page. Unfortunately anytime I use the response, request, or trace objects in any master page module (other than page_load), " Object reference not set to an instance of an object." is the error I receive. Below is a sample of code that will not work on my web server. Any suggestions/advice are appreciated.
0
9579
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10571
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10326
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9143
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6851
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4295
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3815
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2990
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.