Forum: ASP Jun 25th, 2008 |
| Replies: 16 Views: 2,744 thanks!
probably silly question but.... where abouts in my code do i put the retrieve code? |
Forum: ASP Jun 24th, 2008 |
| Replies: 8 Views: 1,194 i dont really understand.. sorry!!! bit of a newbi! |
Forum: ASP Jun 24th, 2008 |
| Replies: 16 Views: 2,744 ok start again....
I have an order table and an order detail table (called HireOrderEnquiry and HireOrderEnquiryLine).
I want to insert the ID that is automatically generated when details are... |
Forum: ASP Jun 24th, 2008 |
| Replies: 0 Views: 626 Hi,
I had a problem a while ago when i was developing my web based database application. I was developing locally but the database was saved on a different server. I got a NT AUTHORITY/ ANONYMOUS... |
Forum: ASP Jun 23rd, 2008 |
| Replies: 8 Views: 1,194 once i add a new column to the DATABASE table through my application i need the HTML table and insert form to somehow refresh to include this new column.
Sorry for confusing you! |
Forum: ASP Jun 23rd, 2008 |
| Replies: 8 Views: 1,194 Thanks for getting back to me!
yeah i understand that i would have to refresh the table somehow but how would i do this so the it will automatically do it if the user adds a new column? Im a bit... |
Forum: ASP Jun 23rd, 2008 |
| Replies: 16 Views: 2,744 I tried using a stored procedure to insert and retieve the ID. here is what i have:-
stored procedure:-
CREATE PROCEDURE spInsertRetrieveID
-- Add the parameters for the stored procedure... |
Forum: ASP Jun 23rd, 2008 |
| Replies: 16 Views: 2,744 Hi!
I cant seem to get it to work. I am a newbi to this sort of thing so im not sure exactly where to put this code or how to edit it (if at all) for my page.
Can someone please help me and... |
Forum: ASP Jun 23rd, 2008 |
| Replies: 16 Views: 2,744 I cant do it because ive never done it before... have to start somewhere somehow.
Thanks for your help! ill try that now. |
Forum: ASP Jun 11th, 2008 |
| Replies: 16 Views: 2,744 if i did use the method you suggested it would not solve the ID problem which was the original problem. I need to add the ID of the order that has just been entered into the orderline table as a... |
Forum: ASP Jun 11th, 2008 |
| Replies: 16 Views: 2,744 how would i do this? I thought only one insert was allowed per page?? |
Forum: ASP Jun 11th, 2008 |
| Replies: 8 Views: 1,194 yeah i mean column...
I know how to enter a new record but the company wants to be able to add a new column to tables in the database if needed... i dont really understand but trying to do as im... |
Forum: ASP Jun 4th, 2008 |
| Replies: 16 Views: 2,744 would use a stored procedure to join and insert the ID into the details table??
any ideas?? |
Forum: ASP Jun 4th, 2008 |
| Replies: 16 Views: 2,744 Hi guys!
I have an order table and an order detail table in a database. I am trying to create insert forms using ASP for these so the user can insert new order details. I created an order details... |
Forum: ASP Jun 2nd, 2008 |
| Replies: 8 Views: 1,194 Hi guys!
I just worked out how to add new columns to my database tables through dreamweaver i was wondering if anybody knew of a way of now searching for and getting the data from the new column?... |
Forum: ASP Jun 2nd, 2008 |
| Replies: 1 Views: 2,304 Sorted it myself! well... the table bit anyway but i think the rest will be quite straight forward now. I'll post this so anyone else who is having this problem can solve it.
You have to pass the... |
Forum: ASP Jun 2nd, 2008 |
| Replies: 1 Views: 2,304 Hi,
Im trying to work out a way for users to be able to add new columns to tables in an SQL Server database through Dreamweaver.
I have tried using stored procedures but i keep getting errors.... |
Forum: MS SQL May 27th, 2008 |
| Replies: 11 Views: 6,861 Sorry for making you pull your hair out! :$
You've been a great help!
What i have now is:-
CREATE PROCEDURE sp_addcolumn
-- Add the parameters for the stored procedure here
@TABLE_NAME... |
Forum: MS SQL May 27th, 2008 |
| Replies: 11 Views: 6,861 what i have now is:-
CREATE PROCEDURE sp_addcolumn
-- Add the parameters for the stored procedure here
@TABLE_NAME VARCHAR(50) = 0,
@columnname VARCHAR(50) = 0,
@datatype VARCHAR (50) =... |
Forum: MS SQL May 23rd, 2008 |
| Replies: 11 Views: 6,861 I keep getting the same error. I tried taking the datatype part out and putting an actual datatype in the code but i got this:-
"Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)... |
Forum: MS SQL May 23rd, 2008 |
| Replies: 11 Views: 6,861 Thanks for your quick reply!
I now have this:-
CREATE PROCEDURE sp_addcolumn
-- Add the parameters for the stored procedure here
@TABLE_NAME varchar(50) = 0,
@columnname varchar(50) = 0,... |
Forum: MS SQL May 23rd, 2008 |
| Replies: 11 Views: 6,861 Hi,
I am trying to create a stored procedure to add a new column into a database from an ASP web application.
The SQL Code for this is:-
ALTER TABLE tablename
ADD COLUMN columnname... |
Forum: ASP May 14th, 2008 |
| Replies: 0 Views: 614 Hi guys,
I am a student on placement and I have created a database for a company. This database contains customer details, enquiries, orders and product details. I used joining 'line' tables to... |
Forum: MS SQL May 14th, 2008 |
| Replies: 1 Views: 584 Hi guys,
I am a student on placement and I have created a database for a company. This database contains customer details, enquiries, orders and product details. I used joining 'line' tables to... |
Forum: ASP May 9th, 2008 |
| Replies: 8 Views: 1,823 yip, that link worked!
THANK YOU!!!! :)
GLT |
Forum: ASP May 9th, 2008 |
| Replies: 8 Views: 1,823 Thank you, however... in the tutorial it says that you will need a copy of the uploading component and gives a link to this but when i clicked on the link it said 'file not found'. |
Forum: ASP May 9th, 2008 |
| Replies: 8 Views: 1,823 well i dont really know. I am student on placement and i have been asked for a way for the company to upload files of drawings etc of the equipment they sell so they can be accessed by customers. I... |
Forum: ASP May 8th, 2008 |
| Replies: 8 Views: 1,823 Im using SQL Server and ASP |
Forum: ASP May 6th, 2008 |
| Replies: 1 Views: 687 Hi guys,
I was wondering if someone could help me please.
How do i query the database using ASP and Dreamweaver to return the field names of a table?
Thanks!
Any ideas greatly appreciated.
... |
Forum: ASP Apr 30th, 2008 |
| Replies: 8 Views: 1,823 how do I upload a file into the database from dreamweaver? I have used a file field in the form but will this automatically upload no problems?
cheers!
GLT |
Forum: ASP Apr 30th, 2008 |
| Replies: 1 Views: 1,454 I wish to transfer data from a potential customer table to a customer table in my database if and when they become a customer and not just an enquiring customer. I need to be able to do this simply... |
Forum: ASP Apr 14th, 2008 |
| Replies: 4 Views: 1,851 Thank you for getting back to me!
I do know the SQL for creating a table but how would I go about coding ASP to create the table? I am a bit confused of how to link it all together.
Thanks GLT |
Forum: MS SQL Apr 9th, 2008 |
| Replies: 8 Views: 3,238 Ive been having aply with my code and trying to find information on this. It looks like I have to use dynamic SQL which I have never used before. Here is the SQL code I have now:-
CREATE PROCEDURE... |
Forum: MS SQL Apr 9th, 2008 |
| Replies: 8 Views: 3,238 Hi, Thanks for you help!
This is what ive got so far... it may be completely wrong but am I on the right lines??
stored procedure:-
CREATE PROCEDURE sp_createtable
AS
CREATE TABLE... |
Forum: MS SQL Apr 8th, 2008 |
| Replies: 8 Views: 3,238 Thank you,
I'm using ASP with SQL Server 2005. The web based database that I am developing will hold details of the companies products and customers, their orders and enquiries. I have developed a... |
Forum: MS SQL Apr 7th, 2008 |
| Replies: 8 Views: 3,238 Hi thanks for replying!
I do know the SQL for creating and altering tables but I was wondering if anyone had any idea how I would get information from a form or something in dreamweaver to then... |
Forum: MS SQL Apr 7th, 2008 |
| Replies: 8 Views: 3,238 Hey guys!
I was wondering if anyone could help me. I am a student on my work placement year and I am developing a web based database. I have been asked to design it so users can if need be add a... |
Forum: ASP Apr 7th, 2008 |
| Replies: 4 Views: 1,851 anyone any ideas?? really need to know how to do this!
Any ideas would be great!
Thanks
GLT |
Forum: ASP Apr 4th, 2008 |
| Replies: 4 Views: 2,138 Hi, Thanks for getting back to me.
I moved the input line above and below the select bit but that just created an input box above or below the drop down box depending where i put it.
Any other... |
Forum: ASP Apr 2nd, 2008 |
| Replies: 4 Views: 2,138 I created a user registration page using ASP and Dreamweaver, I tried to create a drop down box filled with options from a database. I only wanted the box to contain one of each option but it... |