Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > How to read an SQL Server into a ASP page and then change, add, delete and write it back to SQL Server

Reply
Thread Tools

How to read an SQL Server into a ASP page and then change, add, delete and write it back to SQL Server

 
 
Belinda
Guest
Posts: n/a
 
      06-10-2004
Hello All

I need to read a SQL Server table into a Web Page and within the Web
Page to permit my users to make changes to the records, delete or add
new records and then save the entire contents back to the SQL Server
table back.

The functionality I am looking is almost the same as In the SQL
Enterprise Manager whereby I can choose a table open the table and
then return all rows and I can maintain the same and save it back to
the SQL Server table. I want almost a similar web interface to such a
functionality.

Even if not a generic functionality as the SQL Enterprise Manager
table maintenance appreciate if somebody can share the code with a
sample how I can do it in ASP pages + T-SQL if need be.

Thanks
Belinda
 
Reply With Quote
 
 
 
 
Jeff Cochran
Guest
Posts: n/a
 
      06-10-2004
On 10 Jun 2004 01:20:10 -0700, (Belinda) wrote:

>I need to read a SQL Server table into a Web Page and within the Web
>Page to permit my users to make changes to the records, delete or add
>new records and then save the entire contents back to the SQL Server
>table back.


That's an extremely ineficient design. Send *everything* to the web
page, then send *everything* back, even for just changing a single
phone number?

>The functionality I am looking is almost the same as In the SQL
>Enterprise Manager whereby I can choose a table open the table and
>then return all rows and I can maintain the same and save it back to
>the SQL Server table. I want almost a similar web interface to such a
>functionality.


Then it's *not* the same. You change a row in the Enterprise Manager
and it changes just that data in the table.

>Even if not a generic functionality as the SQL Enterprise Manager
>table maintenance appreciate if somebody can share the code with a
>sample how I can do it in ASP pages + T-SQL if need be.


Pull up a list of records that match a criteria (reduce the amount of
data sent), then when a single record is clicked on to change, pull
the full record into a form. Edit it and do an UPDATE on that record
by clicking a "Save Changes" button. Simpler, faster and infinitely
expandable. Plenty of sample code on the internet for each portion of
this.

Jeff
 
Reply With Quote
 
 
 
 
Bob Barrows [MVP]
Guest
Posts: n/a
 
      06-10-2004
Belinda wrote:
> Hello All
>
> I need to read a SQL Server table into a Web Page and within the Web
> Page to permit my users to make changes to the records, delete or add
> new records and then save the entire contents back to the SQL Server
> table back.
>
> The functionality I am looking is almost the same as In the SQL
> Enterprise Manager whereby I can choose a table open the table and
> then return all rows and I can maintain the same and save it back to
> the SQL Server table. I want almost a similar web interface to such a
> functionality.
>


You definitely have the wrong idea about what's going on in the Enterprise
Manager interface. Be that as it may, you do NOT want to give your users the
ability to bring ALL the records from a table into their browser. A web
application running in a browser is miles from having the same capabilities
as a client application installed on a user's machine.

I suggest you pick up one of the Wrox books on database programming with ASP
and eductate yourself.

In the meantime, you may want to download and try out one of the generic
database tools for database editing available on te web. One such tool is
Eli Robillard's GenericDB which is available at www.genericdb.com. This will
give you a starting point and allow you to see what needs to be done.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


 
Reply With Quote
 
Belinda
Guest
Posts: n/a
 
      06-11-2004
"Bob Barrows [MVP]" <> wrote in message news:<>...
> Belinda wrote:
> > Hello All
> >
> > I need to read a SQL Server table into a Web Page and within the Web
> > Page to permit my users to make changes to the records, delete or add
> > new records and then save the entire contents back to the SQL Server
> > table back.
> >
> > The functionality I am looking is almost the same as In the SQL
> > Enterprise Manager whereby I can choose a table open the table and
> > then return all rows and I can maintain the same and save it back to
> > the SQL Server table. I want almost a similar web interface to such a
> > functionality.
> >

>
> You definitely have the wrong idea about what's going on in the Enterprise
> Manager interface. Be that as it may, you do NOT want to give your users the
> ability to bring ALL the records from a table into their browser. A web
> application running in a browser is miles from having the same capabilities
> as a client application installed on a user's machine.
>
> I suggest you pick up one of the Wrox books on database programming with ASP
> and eductate yourself.
>
> In the meantime, you may want to download and try out one of the generic
> database tools for database editing available on te web. One such tool is
> Eli Robillard's GenericDB which is available at www.genericdb.com. This will
> give you a starting point and allow you to see what needs to be done.
>
> Bob Barrows




Hi Bob

Thanks for your tips. Please note the tables I will be permitting to
edit have less than 2000 records so network impact is minimal secondly
I am not planning to let all users maintain these tables.

This is a what if analysis system users change the assumptions in some
these tables which maintain the assumptions they keep iteratively
changing the assumptions unless they meet the goal.

Please highlight to me if there is a better way of maintaining this
kind of asssumptions in a what if analysis situation. We have a number
of users doing what if analysis on a SQL server database and some of
them are remote hence we want to provided some kind of a data grid to
enable them to maintain these assumptions.

Thanks
Belinda
 
Reply With Quote
 
Bob Barrows [MVP]
Guest
Posts: n/a
 
      06-11-2004
Belinda wrote:
> "Bob Barrows [MVP]" <> wrote in message
> news:<>...
>> Belinda wrote:
>>> Hello All
>>>
>>> I need to read a SQL Server table into a Web Page and within the Web
>>> Page to permit my users to make changes to the records, delete or
>>> add
>>> new records and then save the entire contents back to the SQL Server
>>> table back.
>>>
>>> The functionality I am looking is almost the same as In the SQL
>>> Enterprise Manager whereby I can choose a table open the table and
>>> then return all rows and I can maintain the same and save it back to
>>> the SQL Server table. I want almost a similar web interface to such
>>> a
>>> functionality.
>>>

>>
>> You definitely have the wrong idea about what's going on in the
>> Enterprise
>> Manager interface. Be that as it may, you do NOT want to give your
>> users the
>> ability to bring ALL the records from a table into their browser. A
>> web
>> application running in a browser is miles from having the same
>> capabilities
>> as a client application installed on a user's machine.
>>
>> I suggest you pick up one of the Wrox books on database programming
>> with ASP
>> and eductate yourself.
>>
>> In the meantime, you may want to download and try out one of the
>> generic
>> database tools for database editing available on te web. One such
>> tool is
>> Eli Robillard's GenericDB which is available at www.genericdb.com.
>> This will
>> give you a starting point and allow you to see what needs to be done.
>>
>> Bob Barrows

>
>
>
> Hi Bob
>
> Thanks for your tips. Please note the tables I will be permitting to
> edit have less than 2000 records so network impact is minimal secondly
> I am not planning to let all users maintain these tables.


This is irrelevant. The network traffic is not the only thing to think
about. Browsers have limited ability to handle large amounts of data. Web
applications do (should) not work by bringing all the records to the client.

>
> This is a what if analysis system users change the assumptions in some
> these tables which maintain the assumptions they keep iteratively
> changing the assumptions unless they meet the goal.
>
> Please highlight to me if there is a better way of maintaining this
> kind of asssumptions in a what if analysis situation. We have a number
> of users doing what if analysis on a SQL server database and some of
> them are remote hence we want to provided some kind of a data grid to
> enable them to maintain these assumptions.
>

I think the best way to do this would be to retrieve the records into a
spreadsheet and allow the users to do what they will with the data. I would
not recommend using an ASP application to give your users this
functionality. Use the tools that are appropriate for the task.

A Google search should find you information about using ASP to retrieve data
from a database and put it into a spreadsheet which the user can download.
As for saving the changes back to the database, you have several options,
including:

1. Give the user the ability to upload (there are third-party upload
applications that can make this easy for you - do a search at www.aspfaq.com
for some examples) his spreadsheet to a folder on your webserver and use DTS
to import it into the database. See www.sqldts.com for pointers.

There are other less efficient options, but I'm out of time. Maybe some
other people can chime in here ...

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
Required user to read - then click a checkbox and then a button becomes enabled. Mufasa ASP .Net 7 09-04-2007 06:04 PM
How Do I Write a New Class to Disk and then Read It back? kvnsmnsn@hotmail.com Java 2 07-19-2006 03:08 PM
When I open laptop lid i have display then it goes away then comes back Ed Computer Support 1 03-02-2006 07:26 PM
Help. SessionID is x then y then x then y BodiKlamph@gmail.com ASP General 0 09-03-2005 03:02 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57