0
votes
0answers
28 views

How to populate select/combo box without submitting the master form (ASP)

I've got a master form on my page, and I want to create onClick events for some of my drop down boxes to populate other drop down boxes depending on the choice made. I know I can't have a form within ...
0
votes
4answers
47 views

Upgrade backend functionality of website - opinions wanted on different options [closed]

We have a website that originated in 2001, which started with some simple classic ASP scripts that enabled website viewers to dynamically configure products by following a step by step process of ...
0
votes
2answers
47 views

How to insert date in a table with a different format?

My problem here is that I have a date value as 05/09/2013 in a HTML text box which cannot be altered. Now sql only accepts date format as yyyy/mm/dd. so while inserting this textbox value into sql ...
1
vote
2answers
30 views

MYSQL, COUNT = 0 Error

MYSQL newbie My SQL/ASP: sQuery = "SELECT ID, Shop, Make, COUNT(*) AS iTotal From Test.Makes WHERE Shop = " & s & " GROUP BY Make ORDER BY Make ASC;" The table contains 1 line ID=1, ...
1
vote
2answers
37 views

Problems with returning a row in MySQL, ASP

I'm just making the switch from ASP/Access to ASP/MYSQL I'm working with the default tables in MYSQL. I'm trying to write a query that counts the records and will allow me to list the contents at ...
0
votes
1answer
30 views

how to retrieve a specific data from database in ASP and put that data in a variable

Problem: i have a database called admin which has id, username and password column. Now i need to put this id in a variable called "Dim ID" for a specific username. If I run this querry ...
0
votes
1answer
29 views

json response being returned is not recognised

I have a production and tesing environment of our website www.phmotorcycles.co.uk/parts/brakes.html. ON the right hand side of the page there are a set of filter controls. Now in the test ...
0
votes
0answers
26 views

recordset.sort invalid row handle

I have a MySQL stored procedure generating a resultset. The query uses GROUP_CONCAT to select rows as columns. SQL Code snippet SELECT CONCAT( ' SELECT MDE_ID, MDE_CreatedOn, MDE_LastEditedOn ' , ...
1
vote
1answer
149 views

ASP/.NET to connect MySQL Server without using ODBC or any driver?

In Classic ASP or .NET, is there a way to connect MySQL without using, for e.g, MySQL ODBC Driver or Any Driver which needs to be installed on the Server, assuming i'm not an admin or not having any ...
0
votes
2answers
63 views

How to avoid DB requery on pagination using ASP Classic and MySQL?

I have a page that querying products from the database and displaying then in pages of 30 items. When I navigate to the next page, the application re-queries the DB and displays page no. 2 and so on. ...
0
votes
1answer
51 views

ADODB record set throwing an error when a sql query with a UNION is passed

I have something similer to the following code. It keeps on throwing me an error stating Microsoft VBScript runtime error '800a01b6' Object doesn't support this property or method: 'Open' Could ...
0
votes
3answers
115 views

SELECT DISTINCT values after JOIN (asp classic)

I'm trying to select distinct(tr.item_id) from the table term_relationships. I want to avoid listing a post twice if it's related to many tags. Could anybody point me in the right direction? The ...
0
votes
0answers
695 views

ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified in os 64 + C#

Hi guys i have spend around two days to solve this problem.I am really getting stucking into this Please any one who can help me,i would appreciate him.. I am trying to connect MYSQL using VS 2008.I ...
0
votes
0answers
48 views

How to import data from MySQL to MS SQL on a daily job using Classis ASP

I my main site in Classic ASP with MS SQL Around 15 Small foreign sites using Classic ASP and MySQL I need to know a way in ASP or some function in MS SQL or MySQL that i can run on a end of the day ...
0
votes
0answers
75 views

optimising queries mySQL / Classic ASP

I've been given the task to maintain a site that has been originally written all in classic ASP which I quite like as VBScript was the first language I learned however I am finding in the code some ...
0
votes
1answer
102 views

Entering date in a mysql database with classic asp

First message here, I dont know why I waited for so long. So I am currently fixing a website built with classic asp using mysql database. In the database, there is a date field with datetime type. So ...
1
vote
2answers
61 views

Get row count from database then convert it to a number

I'm using classic ASP for this. My goal is to figure out how many entries have been made before "Sorry registration is full" message is shown. I thought it would be simple just to count the number of ...
0
votes
1answer
114 views

In SQL, how to retrieve data of a certain record by whatever User Inputs in the text box. How to send user input variable to the SQL Statement

I have simple HTML code which is form method="post" action='Data.asp and input type="text" name="UserInputData" size=20 What I want is that whatever user inputs in the text box should be ...
0
votes
1answer
59 views

connecting mysql with classic asp error

Due to some technical reasons, I had to change my database from sql server to MySQL. But I am getting the following error, I cannot connect to the database..! Microsoft OLE DB Provider for ODBC ...
2
votes
3answers
135 views

MySQL connection works in PHP but not ASP

I have to do a MySQL-Database connection to a remote server using ASP. When I use normal PHP everything is fine. If I use following ASP code Set oConn = Server.CreateObject("ADODB.Connection") ...
0
votes
1answer
129 views

how to INSERT a NULL value in mysql, taken from a variable. ASP

lets assume i have a staement variable like this: sql_ins = "INSERT INTO tableName (field1,field2,field3) VALUES ("&var1&","&var2&","&var3&") well, let's say that var1, ...
0
votes
0answers
78 views

Error on querying Access link table in ASP page

I am able to acccess the link tables from ms access database to My SQL. I am able to access through asp.net but through classic ASP i am getting the following error: Microsoft JET Database Engine ...
0
votes
2answers
210 views

With Classic ASP randomly ADODB.Recordset are “double encoded”

I've a problem and I can't understand what is causing it. I'm working on a legacy website, written in Classic ASP (oh god why me), and sometimes at apparently random time without any explanation the ...
1
vote
0answers
100 views

MonthName() function is not working in windows 8

Before that i using window 7, I did the use the function MonthName() http://www.w3schools.com/vbscript/func_monthname.asp my code when using windows 7: response.write MonthName(12,True) ...
1
vote
2answers
711 views

ASP, MySQL and UTF-8

First of all, I've read almost all topics about this. I've tried all advices but I couldn't solve this problem. Here is the thing. I use Classic ASP and MySQL for a project. Everything just fine. If ...
0
votes
1answer
264 views

ASP connect to MYSQL error 80004005

Full error: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [MySQL][ODBC 3.51 Driver]Can't connect to MySQL server on 'IP' (10065) /test.asp, line 17 Attempting to connect to a MySQL ...
0
votes
1answer
121 views

MySql IN Parameter - Does a VarChar IN Parameter val need to be single quoted when used in Stored Procedure?

MySql IN Parameter - Does a VarChar IN Parameter val need to be single quoted when used in Stored Procedure? I have created my classic ASP code just like normal but I am not getting the column to ...
0
votes
1answer
142 views

Classic ASP - Issues with data data access through SQL

I have been working with classic ASP and database access through it. The database im using is MySQL. The ASP pages are running on IIS 7. I developed two ASP pages. First, here is the schema im working ...
0
votes
1answer
73 views

Classic ASP Email Notification with loop functions

I'll appreciate any assistance on this. The scenario; I have a database table with the following sample records; data1-------------dt2----data3------data4--------data5------data6 Brewing ...
4
votes
4answers
359 views

SQL Injection Prevention

I'm currently working on a legacy ASP project where security has now become a large concern. Not only is it insecure encryption methods (md5), but I'm worried about SQL injection problems. I'm not ...
2
votes
1answer
122 views

MySQL loop with ASP

I've been trying to get some ASP code to work for a while and simply can't (I'm a PHP guy and contracted someone to do this for me, but he refuses to answer emails now). So I was wondering if someone ...
0
votes
1answer
168 views

hebrew encoding from MYSQL in ASP delivers?

i've built a site for a client using classic ASP with MySQL database as the back-end. everything works fine on the test server, but when i transferred the site to the live server all the hebrew data ...
1
vote
1answer
52 views

Mysql + copying data of one column(table1) to column of (table2)

I have two tables. One is EmployeeDatabase and other is EmployeeSalary. Both has a column column employeeid...i want to fetch all the employeeid from EmployeeDatabase and fill it to the ...
0
votes
2answers
204 views

JSON parsing: PHP code to ASP [closed]

In my test i use PHP to convert the json string to insert it in the mysql database. This is how the php file looks like: if (isset($_GET['data'])) { // Is er data binnengekomen, zoja voer dan de ...
2
votes
1answer
158 views

How to use classic ASP to format TIME into HH:MM AM/PM format?

I am going nuts with this one. I have a mySQL table with a field of TIME type. I want to display a time such as 09:00 PM, and not 09:00:00 PM. I got this to work but think there must be a better way - ...
0
votes
1answer
123 views

How to Format Business Hours of Operation from mySQL Table

Having looked at other questions that may already have my answer I thought to poise this question for some help. I have a template website for a bunch of business, most of which have the same start ...
0
votes
1answer
283 views

How to set SQL_BIG_SELECTS = 1 from VB(legacy ASP) with ADODB environment?

I encountered The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is okay error with my ASP code. ...
0
votes
1answer
137 views

Executing update for MySQL with double byte makes field incorrect string

MySQL is set as UTF-8(utf8_general_ci: MySQL, Table, Column). I can SELECT varchar value as original double byte character via ADODB and ASP(Legacy VB Script). These characters are inserted from ...
1
vote
1answer
179 views

How to improve perfomance of recordset handling

I've written a web application in ASP which reads 3600 rows from a MySQL database (v5.1.63) and outputs the data in an HTML table. I'm using a recordset to get the data and pagesize/cursorlocation to ...
2
votes
2answers
57 views

Logic issues in asp+mysql

I have a logic problem. I have some clients, in a MySQL database table. The client number is the primary key. Here are some examples of client numbers (ex: 10127, 8520053). I'm using asp and I want ...
0
votes
1answer
101 views

Background color fom database ASP/MySQL

I am trying to have my asp-classic pages display the background color based on the six digit hex value sent TO mysql db via js color picker. I am able to display images, but not colors. Here is my ...
0
votes
1answer
137 views

SELECT LAST_INSERT_ID - not producing numerical value

I'm trying to get the last inserted id from my DB to use in another query, but... when I check if it's a numerical value, it fails! // my big insert query goes here // Set rs = conn.Execute("SELECT ...
0
votes
3answers
147 views

sorting numbers stored in text field in MYSQL database

i have a mySQL database with a text field in which is stored a number. i need to produce a recordset sorted in descending numerical order. this works fine until we get to numbers greater than 10 ie ...
0
votes
1answer
80 views

Printable Paging MySQL Database

I have a question maybe someone could help me with. I have a Ticket Tracking system that was created with a MySQL database. I need to print out ticket streams of records for a client but the problem ...
0
votes
1answer
457 views

Error Type: ADODB.Recordset (0x800A0E79) Operation is not allowed when the object is open

i am working on this code but it gives me an error saying thatError Type: ADODB.Recordset (0x800A0E79) Operation is not allowed when the object is open. I have never ever come across this error ...
0
votes
2answers
231 views

strange mysql results in asp

I have the following piece of code: strSQL = "SELECT COUNT(*) AS anz FROM tbl_ergebnisse WHERE testavg >0" set rs3 = Conn.Execute(strSQL) Response.Write "Count(*): <br>" if not rs3.eof then ...
1
vote
2answers
738 views

Classic ASP mysql INSERT getting result Operation is not allowed when the object is closed

I have this code: Set oConnection = Server.CreateObject("ADODB.Connection") Set oRecordset = Server.CreateObject("ADODB.Recordset") oConnection.Open "DRIVER={MySQL ODBC 5.1 ...
0
votes
1answer
446 views

Script to select, update, insert and delete from MySQL with asp.net (VB)?

I've just switched from classic ASP to .net and I always used the following to SELECT, INSERT, UPDATE and DELETE from my MySQL databases: ' Create db connection Function dbConn() Set objConn = ...
2
votes
1answer
187 views

Classic ASP - Can I lose my nested loop in exchange for a join?

I'm trying to optimise one of scripts. It's for a stock photo website and shows a large grid of images using a WHILE WEND loop, looping through my DB (MySQL) table of photos. Inside this loop, I have ...
0
votes
1answer
91 views

SQL limit query optimization

I have a mailing list that contains 4000,000 emails, members of my website enter the email and i take it after this i do a validation of this email with 4 million mailing list , to do this i wrote a ...

1 2 3