| Thread | Last Post | Replies |
|
| how to get min() and max() of a stored procedure's results? | 01 Aug 2006 00:51 GMT | 9 |
Im stuck on this stored procedure. I want to get a recordset that has the first two rows populated with the min() and max() of each column of the following stored procedure, with the rest of the rows filled with the results from the stored procedure:
|
| Pass datetime paramater to SQL Stored Proc in ASP | 30 Jul 2006 13:10 GMT | 1 |
I get the following error while trying to execute a stored proc Application uses a value of the wrong type for the current operation. heres the ASP Code sfrmDate = Request.Form("frmMonth") & Request.Form("frmDate") & Request.Form("frmYear")
|
| MySQL Database Connections | 29 Jul 2006 06:26 GMT | 2 |
I was wondering if i can create 2 server objects for my MySQL database. here is my code: <!--#INCLUDE FILE="connection.asp"--> <% catID = Request.QueryString("catID")
|
| MySQL Database | 27 Jul 2006 12:32 GMT | 1 |
heres what i wanna do....... for each month, i want to create a new table...........but if the table is already existing, then how would i detect that........and vice versa, how would i check that its not there.................
|
| UPDATE ONLY IF COLUMN NULL ACCESS DB | 25 Jul 2006 19:05 GMT | 1 |
Ok what do I have to do to make it work if JUST checking for NULL columns it is ok to update field? I have ACCESS database. I was given this but I cannot make it work:
|
| How to query SQL Server 2005 in ASP | 21 Jul 2006 15:33 GMT | 1 |
We are moving over to SQL Server 2005. Could anyone give me a simple code to connect SQL Server 2005 in ASP. What's the connection string? Is
|
| Query to check response to questions | 21 Jul 2006 01:29 GMT | 2 |
I don't know how best to describe this, except with an example of what i want to do: A table in MS Access 2000 holds choices made by a user in response to a series of questions, but for each question in the response (a response
|
| uploading file into sql 2005 using .asp | 19 Jul 2006 19:42 GMT | 4 |
Anyone who can send me a sample code of how to upload a file into SQL 2005 server using .asp running on IIS 6? I have a code that has been working when uploading into SQL 2000 but when I do the migration to SQL 2005, it doesn't work anymore.
|
| varchar vs. char + trim | 17 Jul 2006 21:02 GMT | 1 |
OK I've got a database that a programmer setup with char columns instead of varchar, because char columns are more efficient than varchar to process. Whenever I list the data on a webpage, however, I have to call trim to get rid of the whitespace. It would seem to me
|
| Moving to a previous record | 16 Jul 2006 13:36 GMT | 1 |
i know how to use rs.MoveNext to get the next record in the database. Was wanting to know how to get the previous record. I tried rs.MovePrevious and i get error..... My code is as follows (the database is opened, and a query is already ran
|
| How do i display only the first few records in a recordset... no paging | 15 Jul 2006 09:00 GMT | 1 |
How do I display only the first few records in a recordset. I don't want paging. I just want to list the last few additions to a database and thats it. Is there a simple way?
|
| large varchar columns in SQL server | 14 Jul 2006 22:43 GMT | 49 |
I recently came across an article (http://www.aspfaq.com/show.asp?id=2188) which said: -- Depending on the version of your MDAC driver, and the database you are
|
| question about opening and closing connections on aspfaq.com | 14 Jul 2006 17:07 GMT | 11 |
Here http://www.aspfaq.com/show.asp?id=2424 it says "Open your connection just before needing it, and close it as soon as
|
| pseudo code for replacing words in a paragraph efficiently? | 13 Jul 2006 15:44 GMT | 1 |
I have a table of substitutions, like this: id word substitutions 1 cat feline mammal 2 dog mans best friend
|
| how to SELECT * except for one field? | 13 Jul 2006 01:20 GMT | 6 |
I want to SELECT * but omit one field (the ID field, the first one) from the recordset. Any way of doing this? I want to do this because I have several tables with different fields and I want to use the same code to list the contents of each, so I don't want to specifically
|