Creating A Database Object Using Passed Parameters

I have created a database connection function which I use to open my database connection and recordset and another to close it. Easy stuff I know. The problem is this.

I want to be able to create database conenctions and recordsets specifically when I call the function. For example Code:

View Replies


ADVERTISEMENT

Null Parameters Passed From XMLHTTP In Javascript To C# Webservice With SOAP

I have encountered some strange behaviour when using the XMLHTTP Request object in Javascript to return xml from a C# Webservice Method. I create a SOAP envelope and send it off to the Webservice, which I have debug points in, which when hit I can see that all the parameters are coming thru as null....

View Replies View Related

Creating VBScript Command Dynamically Using ASP Passed Value

my ASP code creates a form and an array of chekbox with this statement response.write "<input type='checkbox' name='chkProduct" & Cstr(counter) & "' value='delete'>" all goes well and i also have a button that points to a VBScript function passing one parameter the counter start value so i can loop throught the checkboxs on the client side and determine if checked or not.

Ok i can display my command "document.frmProductCart.chkProduct & (Cstr(counter)) & .checked" as a string in alert but cannot make it as a command like it should be, anyone got any pointers ?

View Replies View Related

Update Database Using Variables Passed Through Browser

I am creatiung a track record website which displays a list of branches and how many people are available at each individual time slot.

I thought the best way to update would be to create a link which passed two variables, the branch and what time slot. This would then be retrieved int he book.asp page which then would knock one of the current count. I came up with the below page: Code:

View Replies View Related

Parameters To Command Object!

Microsoft advises not to pass parameters to the Command object in the Execute statement. Why?

View Replies View Related

Sqlcommand Object Parameters

I am trying to implement a search on a SQL database using a textbox and a dropdownlist. The sql command has two parameters in it that effectively says "SELECT * FROM myTable WHERE @Param1 = @Param2" where Param1 is being set from the drop down list that is a list of the table headers and Param2 is the string in the textbox. This is not working. It compiles but does not return any results.

If I hard code Param1 or the column header in and just leave Param2 the search works fine. When stepping through the code both lines that assign a value to the parameters in the SqlCommand object are assigning the correct values but the commandtext property still shows the parameters as @Param1 and @Param2. Is there something inherently wrong with this.

View Replies View Related

Command Object Parameters Query?

Have no problem getting my select queries to work using this method:

strSQL = "SELECT tblUI.IPAdd FROM tblUI WHERE (tblUI.IPAdd =?)"

arSPrm = Array(strRemHst)

Set rst = cmd.Execute(,arSPrm)

Can anyone point me to some examples of using this method for UPDATE and
INSERT queries? Can't seem to get it to work no matter what I can think of
to try. (If it is possible?)

View Replies View Related

Creating Excel Object

I have an ASP page that create an Excel object.

xlsApp = new ActiveXObject("Excel.Application");

It works fine when using under Administrator logon name but not under other users. Proper permissions have been given to IUSR_servername for all folders.what I am missing.

View Replies View Related

Trouble Creating Object In Win 2000

I have an asp app that works fine on a windows xp machine but does not work
on a windows 2000 server.

I have the following code in my global.asa:

<OBJECT RUNAT=Server
SCOPE=SESSION
ID=MyID
PROGID="MyAppName.MyID">
</OBJECT>

I get the following error when trying to run my app:

Active Server Pages (0x8002802B)
An error occurred while creating object 'MyID'

Initial searches pointed me towards a permissions error but I still can't
find the problem (everybody has full permission to the app folder).

Once agian it works on windows xp machines running IIS 5.1 but does not
works on win 2000 IIS 5.0. I think I've changed every setting in IIS but
still can't get it to work.

Any suggestions on what might be the problem or how I can troubleshoot this?

View Replies View Related

Passing Database Search Parameters

I am trying to do any better than this and am losing my confidence daily as I pressumed this to be easy and I am sure once I have done it I will wonder what all the fuss was about!

My experience with ASP is limited to one Degree module and I am trying to build a prototype web site. I need pointing in the right direction to what I presume is a common ASP requirement - a ‘second level of user enquiry’. Code:

View Replies View Related

Creating An XML Document Object In IIS 5.0 W2000 Professional Wkst

I am attempting to open an XML file in an asp on my personal IIS server. The
VBscript code is:

set xmlDoc = Server.CreateObject("Microsoft.XMLDOM")
xmlDoc.async = False
xmlDoc.Load("bpm.xml")

When I test for errors, I receive this message from the
xmlDoc.parseError.reason property:

reason: System error: -2146697210.

However when I run the same VBscript code on the client it successfully
opens the xml file and away we go. Is there something I need to load or
configure on the IIS server to enable XML DOM processing? What is causing
this error?

View Replies View Related

Microsoft JET Database Engine :: Cannot Update. Database Or Object Is Read-only

I had made a form name 'dform.html' which asks idno, name and phone from the user and after the user clicks on button "save data" sdata.asp is executed. sdata.asp is written to save the values entered for idno,name and phone in dform.html into table "myfriends" in the mydata.mdb (access database). but when i am clicking on save data button i am getting error saying

"Error Type:

Microsoft JET Database Engine (0x80040E09)
Cannot update. Database or object is read-only.
/SDATA.ASP, line 9"

can please anyone tell me why i am getting this error.

View Replies View Related

Microsoft JET Database Engine , Database Or Object Is Read-only

Error Type:

Microsoft JET Database Engine (0x80040E21)
Cannot update. Database or object is read-only.
/q_maker/aero_admin/delete.asp, line 12

what is wrong! i checked the db and its not readonly.

View Replies View Related

Creating Database

i'm having trouble finding the syntax of the create database..can some give me a link or something??

View Replies View Related

Creating Database & Tables Using ASP

I want to create a database and its tables and populate it through a web page, using ASP. The database is MySQL on win32 (4.10.13-nt) and the driver is MyOLEDB 3.0.

One thing, to set up the ole-db connection, it seems I have to specify a data source, which is an already existing database.

The Connection works and I actually can create the database, but the code for the table creation generates a 500 server error. The SQL itself is taken straight out of MySQLcc query window, so I know it's all good, syntactically.

(Also, regarding the connection, I can connect to and read from an existing database. It's the table creation that seems to be the trouble.)

I did a response.write to the page to make sure that the code coming out is what went in and that is the case. So, I guess one question is, what could be different about creating tables in a db that would fail, when "create database test_links;" and "use test_links;" both complete successfully (and the newly-created database shows up, just no tables in it).

To test the sql, i made three strings of SQL and executed each of them sequentially. The first two work, the third (table generation) fails.

A second question is, is there a way to capture any error message that might be generated at the MySQL end, rather than having the page bomb out; and then display the error. I tried using a RecordSet object, that didn't work, the page still crashes.

View Replies View Related

Creating An Access Database

Is it possible to create a database of any sort not only Access using nothing but code?

To this day I still create databases using Access on my hardrive then upgrade them and use code to modify them... would be very convinient if there was a way to just create with ASP code and edit from ASP as well...

View Replies View Related

Problem With Creating A Database In Win Xp

i have to do a code in ASP that including this code:

set c=server.createobject("adodb.connection")
c.open "dsn=MyDSN;"
c.execute "create table first_tables(Name char, Tel char)"

and i am geting that error:

Error Type:

Microsoft OLE DB Provider for ODBC Drivers (0x80040E09)
[Microsoft][ODBC Text Driver] Cannot modify the design of
table 'first_tables'. It is in a read-only database.
/1.asp, line 4

what can i do?

View Replies View Related

Creating A Database System

Does anyone know of a database system available in which users could establish a user name and password to register products, buy merchandise and access a message board? I have moderate asp skills, but have no idea how to write or where to purchase software to create this database.

View Replies View Related

Creating Graphs From Data In Database

I need to create a chart/graph with the following data from my database:

Each record is opened and then closed at a later stage. I then calculate the time it took from when the record was entered to when it was closed.

Now i need a pie chart to display how many records was closed in certain times. for example 10 records was closed within the first 10 minutes, 2 in 20 minutes and so on.

this also is to happen for dates that the user entered. i.e a Weekly report and a monthly report.

Any advice and help will be appreciated. I found alot of examples of hardcoded graphs but none extracting data from database.

So first i need to count the records that fits each section of minutes and then use that data to draw my graph?

View Replies View Related

Creating Database Fields Dynamically

I am using a repeated field to bring in to my page repeated records, and I have been able to retrieve values that are entered into text boxes that are associated with these repeated fields. I would like to post these values into a database, but I'm not sure how to set up my table as I know that each employee's values as well as number of fields will be different.

I thought about setting up two tables. One that houses the dynamic question and the other to house the answers, but I'm not sure if that will work. I could really use help as to the syntax to write a loop statement that will insert my returned variables and create the field names dynamically into my database table. I believe this is what i need to do.

View Replies View Related

Creating A Database Driven Breadcrumb Trail

I want to create a breadcrumb trail on a site, but instead of being
generated by cookies or a directory structure, it needs to be database
driven. My website details hundreds of products, each belonging to a
category. Each category can belong to a parent category, and so on.

My site will feature master/detail pages, and both need to feature a
trail, e.g.

Books > Hobbies > Sport > Football

The master page will list all items within the current category, and the
trail will allow the user to click to any parent category for a wider
listing.

The detail page will show the item detail, along with a full trail to
the category/parent categories it belongs to.

The category structure will grow over time, and different branches will
have different number of levels so it needs to be maintainable.

View Replies View Related

Creating Unique Usernames For Users Of A Database

I am tryin to create a database of users for my system,each user is given a username based on their own name(surname and first name), however if 2 users with the same or similar name enter their details they will be given the same username,for example john drew would return drewj as thier username, so would jack drew, when a new user is entering their details how do i check that the username generated for them does not already exist,i.e i need to compare the username generated for the new user with all usernames already held in the database,if the username does already exist i want to add a digit to the end of the username how is this done using asp?

View Replies View Related

" Character In Database Field Creating Problem

I am using an Access database, and for a field called size the client entered some values such as 20" x 20" Unfortunately when I try to print that field to the page, the cursor stops typing at 20 because I'm assuming it considers the first " inside the 20" x 20" to be the end of the string.

I am simply trying to print the whole string <%=(rsProdsUpdate("size1"))%>

Is there a workaround this without having to change all the values in the database?

View Replies View Related

Passed A Variable

when guarding against sql injection attack from modified form or
querystring variables is it enough to strip out just apostrophes...if the
variable USERNAME is the name of a text box passed to a script is the below
always safe...

q1="select * from TABLENAME where username='" &
trim(replace(request("USERNAME"),"'","''")) & "'"

View Replies View Related

Button Passed To URL

I've never seen this before. I am new to querystrings, as just using hidden
fields and the POST method has been more than adequate for me until
recently. But I started using the GET method, and I noticed that when I
clicked the submit button, it gave me this for a URL:

http://localhost/DisplayTickets.ASP...nsearchTSE.y=11

The thing is, selectTSE and Status are the two <SELECT> boxes, so I
understand them being there. But why is is telling me the x and y
coordinates of where I clicked the button to submit the form?
I should add that the submit button is an image, not a regular button.
This doesn't hurt anything, just wondering why it's there. And maybe it will
hurt something later on; I don't know enough to say.

View Replies View Related

Cookies Passed

can cookies be passed from a pop up "secure folder log in" window, provided by my hosting company? As I would like to display a welcome message with their name when they log in.

View Replies View Related

Zero's Omitted From Passed Value

when i try passing a numeric value as a string("0004") using asp to a stored procedure, the value is stored as 4 and not as 0004 in the table. In the table and stored procedure the value type is nvarchar.

View Replies View Related

SQL Passed Variable

I have a page that passes a variable in to an sql query

It parses the string (a date) for month and year.

It works when i use the date() function Code:

View Replies View Related

The Database File Or Object Is Read Only

Actually, I do not know why i can not add records to my access database table by using asp code, I get an error that tells me that the database file or object is read only file even though the file is not readable only from its proprties, I need some helpful information to solve this problem.

View Replies View Related

Cannot Update. Database Or Object Is Read-only.

My database is working perfectly and I am still getting the following error:

Microsoft JET Database Engineerror '80040e09'

Cannot update. Database or object is read-only. /raven/aspBoardFunctions.asp, line 144

I called my new webspace provider and they said you should be able to change permissions with my ftp program. I looked and viewing permissions is the only thing I find. Any suggestions? Code:

View Replies View Related

Querystring Problem The Not Being Passed

I'm trying to pass paramter values to another .aspx page via a querystring. The record in the db table looks something like this lahlahlah. The value that gets passed looks like this lahblahblah. So basically the is not getting passed.

Here's what my querystring looks like: Code:

View Replies View Related

How Do I Use A Passed Variable In A Query?

i need to add a variable brought into the
script like: script.asp?variable=var

and i need to make it for use in

var1 = request.querystring("var")
mySQL = "SELECT * FROM members WHERE nick = 'VAR1'"

can anyone tell me how to do this?

View Replies View Related

Record Values Are Being Passed

When i submit this form all the record values are being passed to the next asp page. But i want only those records which the user has changed in this page.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved