ASP - Date Formating MySql Insert/update

I am storing dates in a mySql database in the format yyyy-mm-dd. Now, I have set up so that this field is insert by a form.

It isn't very user friendly to have to type yyyy-mm-dd, how can I set up so that the user can enter format dd/mm/yyyy and it will automatically insert into the database as yyyy-mm-dd? I am using Dreamweaver MX 2004 and ASP.

View Replies


ADVERTISEMENT

Date Formating

does anyone know if there is a function to format date?When my date is extracted from database, it is in decimal format (ie.38233.72078), is there a way to convert this number to date formate using asp?

View Replies View Related

Date Function Formating

Is there a way to output a date in latin american format?

You know the day first, the month second and the year last.

View Replies View Related

MySql Field Update

Why is it that this does not work in MySql?

RS.Fields("Fullname").value = "Bob"

Is it because MySql does not support this?

The code below is a bit more representative of what I'm doing:

<!--#INCLUDE FILE="Database_Open.asp"-->
<%
sql ="SELECT * FROM CustomerBase WHERE " & _
"UserName='" & username & "' AND " & _
"SECRETWORD='" & password & "' "

RS.Open Sql, Connection, 3

IF RS.EOF THEN
'redirect code here
ELSE
RS.Fields("Fullname").value = "Bob"
RS.Update
%><!--#INCLUDE FILE="Database_Close.asp"--><%
Response.Redirect ("Menu_Account.asp")
END IF
%>

View Replies View Related

Update Record In MYSQL

ASP VB. I have 1 recordset where I pull the order in.
I have another that I pull in the on-hand qty.
I used a repeat region and now I have it working to display the new on-hand qty. Now I just need to update the recordset with the qty on hand.

View Replies View Related

Update MySQL Problem

I've always sticked to MS SQL Server because it doesnt give me troubles that I have with MySQL. But decided to give it another shot.

I use "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=myserver; DATABASE=mybase; UID=myid;PASSWORD=mypwd; OPTION=3" connstring to connect to my database online.

I can read and get records off the database easily, but everytime I try to update records using recordset

rs. open "SELECT * FROM MyTable", Conn, 3, 3
rs("Content")="Hello" 'text datatypers.update

It always generates error. Can some1 help me with this?

View Replies View Related

Confirmation Of INSERT In ASP/MySQL

I wrote an ASP prgram to insert a row into a MySQL database using data from a form. It works just fine, however is there a way to check a return code and trap any error that may occur (duplicate row error for example) so I can format and display a message in the browser instead of having the error just show up?

I've been looking in my ASP & MySQL books and searching on the web but can't find anything that sounds like what I want to do.

View Replies View Related

UPDATE Mysql Record From Within <A HREF...>

I have a .asp page that displays an HTML page: view_msg.asp

There is a link (anchor tag) on that page that when clicked, sends the user to another page. I would like to also execute a MySQL query when that link is clicked. The DB is already open and connected to the page. The current current tag looks like this:

<a href="view_messages.asp"><IMG SRC="example.gif"></a>

and the MySql command I want to send is:
UPDATE Messages SET `fromDisplay`="N" WHERE idMessage=" & idMsg "

In english: When someone clicks on the link I want to execute a MySQL command to set the field value to N... how do I do that?

I know this is a very rookie question - but I don't know enough about asp to know how to execute the command here the way I want. Do I have to turn the image/button into a <FORM> 'submit' button</FORM> and use a redirect? Or, would I use an ONLCKICK. What would the correct syntax be?

View Replies View Related

Insert Into MySQL Datetime Issue

i have the following insert statement:

varSQL = "insert into messageCenter(sender,recipient,title,message,sent, ack) values(" & request.form("sender") & "," & request.form("recipient") & ",'" & request.form("title") & "','" & request.form("message") & "','" & now & "'," & 0 & ")"
oConn.execute(varSQL)

for whatever reason, the "sent" field is always blank. it is set to "datetime" in the MySQL DB.

View Replies View Related

Insert Data Into Mysql Fields

I'm writing ASP/mysql apps, and I'm almost clueless about mysql. Can someone tell me how to insert data into fields using ASP? Code:

View Replies View Related

DateTime Insert From String MySql

I have a form that collects the date and time of an event. I create a string to hold all of the data in the correct format for MySQL and it (the string) looks like this...

2007-03-03 17:30:00

I am then using CDate to convert the string to a DateTime type.

and since I am in the US it gets converted like this...

3/3/2007 5:30:00 PM

per my regional system settings...

I grabbed this code from the forums here which I have used before... Code:

View Replies View Related

Mysql Insert And Select Problem

I have 2 simple seperate .asp files :

1 to insert a record a record into a mysql database-table.
1 that reads the database-table and displays the records.

When I call them in seperate browser-windows, everything works fine.
The problem rises when I use a menu-page and call the pages in an IFrame in the same browserwindow.

The newly added records from the form-frame, do not show up when I call the display frame.

I have to close my browser and reopen it to see the new records.
There are no error-messages given. Code:

View Replies View Related

Insert And Update In Asp

this programe is read date for excel and export to mdb,if there exist the BID in mdb then update the date,else inert the date to mdb. Code:

View Replies View Related

INSERT/UPDATE

I have a form that pulls existing information from a database and allows users to edit it. Every field can be left blank if the user wishes.

I am having an issue with determining which SQL statement to run. There has to be an easier way to do this then what I am doing. For each filed I process the data this way:

SQL2="select * from 1985ClassList where MailingListID =" & Session("EID")
set aData = oConn.execute(SQL2)

Code:

View Replies View Related

Asp Sql - Check If Update Else Insert..

I'm using a database to store the products in a basket.

It's this scenario:
A visitor already has some products in his basket and wants add some new ones.

Now, first I want to check if the selected products aren't already in the database.

1. if they are -> update the product when the amount number is changed
2. if the product is not in the database then insert it.

I'm stuck at the point that I can't retrieve if the database is updated, so I can either stop the query or insert the new product.

Java has a statement like getUpdateCount(), but ASP/VBSCRIPT??

I want the fastest solution, i dont want to retrieve the data twice and compare them to check if it changed..

View Replies View Related

INSERT/UPDATE Error In ASP

I try to do an INSERT statement throught my ASP to add records to my Access DB. However I get an error when I execute this. The code in ASP is -

strSQL = "INSERT INTO tbl_psm (LocID, Week, Month, Year, Rating, Remark, Action, SubmittedDateTime) VALUES ('" &cint(intLocid)& "', '" &cint(sWeek)& "', '" &cint(sMonth)& "', '" &cint(sYear)& "', '" &cint(sRating)& "', '" &sRemark& "', '" &sAction& "', '" &formatdatetime(date,vbshortdate)& "');"

objConn.Execute strSQL

I get the error page Code:

View Replies View Related

Insert And Update Error

I am submitting a comment box from a form into a database field that I have declared as text (16). When I type in a small amount of information, it submits just fine, but when I enter a substantial amount of data then I receive an error. I've tried different field types, but I keep getting the same error.

[Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near 's'.

View Replies View Related

Insert/update Record

I have to compare 2 tables: orderA and orderB, if the record exists in both table orderB and orderA, just do a update to the quantity field in orderB (add orderA.quantity to orderB.quantity). Otherwise a new record has to be insert into orderB.

Do I have to loop through the recordset of orderB, then use select statement to see whether the record exists in orderA or not, and determine whether to update/insert record? I am using Access database. I just afraid that looping through each record in recordset (maybe >=30 record each time) would make the transaction getting slow (or even hang??). Can I do this in one SQL statement?

View Replies View Related

Insert And Update The Same Time

I want to insert the element selected by the user from the drop down box in the DB(Access).Once the user hits submit i want it to insert this in the DB + i want to update one of the fields from True to False . how can i perform both these at the same time?

View Replies View Related

After Insert - Update Another Site

The data that is entered into my website needs to be sent to someone else. Currently it is being put into a MySQL database. In addition to this, a third party needs this information. They have something set up on their website where I can do this:

https://www.domain.com/update.exe?src=username&data=Smith,John,5,12,Rose,Charlie

I have no control over domain.com. How can I update the record, send the data to this URL, and then redirect the user back to the default page? Right now it just inserts the record and then redirects to the default page. I'm unsure as to how to do the URL bit. I would prefer if the user did not see the domain switch.

View Replies View Related

Multiple Insert/Update

After the page (transactions.asp) loads I want to allow the user to enter the number of transactions into the provided textboxes. Then, when the user clicks submit, I need to have all the hidden fields as well as the number of transactions values inserted into the transactions table of my database?

I have attached the database should you have any questions about the db table values and fields. Please let me know if you have any questions or need more information or files.

View Replies View Related

Insert / Update / Delete

can u tell me of a simple script i can use to do the following. I want a textbox to add a entry to the database with a submit button, then below all that the current database entrys are listed below also in textboxes with a UPDATE and DELETE button beside each entry.

View Replies View Related

ASP/VBScript DATE Into MySQL ??

now() = dd/mm/yy

mysql datetime = yyyymmdd

i'm a designer using dreamweavers asp coding / insert statements, but i cant get mysql to take the date in the right order....

View Replies View Related

Date Function & MySQL

Is it possible to change ASP's date function to a MySQL compliant (ie. year first; 2003/8/17) style without a lot of code?

Maybe I'm mis-guided. I have a website built in ASP and using MS SQL. I'm converting it all to MySQL, but I'd rather not have to rewrite all the instances where I do something like this...

ASP:
Code:

Query = "SELECT SUM(Total) AS Totals FROM orders WHERE create_date BETWEEN '" & date & "' AND NOW()"

Results in: Code:

View Replies View Related

Inserting Date To Mysql Db

this is the code im trying to use to insert a date to mysql db:

dim myquery
dim datew

datew = formatdatetime(date())
myquery = "INSERT INTO article (date) VALUES ('" & datew & "')"

this inserts a date but its always "0000-00-00", i want to get the actual date and add it to the table.

View Replies View Related

Insert And Update Excel Data

I didn't know how to use asp to update or insert the excel data ....

View Replies View Related

Update/Insert On MSSQL Table Using ASP Forms

I have a problem that it's bothering me for some time now and i will need a lot of help from you. I don't know how easy or difficult it is to be done but i would appreciate any help.

I have an mssql 2000 db with table "table1". Attributes for "table1" are:

ID (Primary Key)
field1
field2
field3
field4
field5
field6
field7

I'm trying through DreamWeaver MX to create a form through ASP and Text Fields, so that i can update "table1" through the form and also on another page to show the results of my table.

I have created a form which will be accepting 25 rows, each row having field1, field2, .., field7.

I cannot seem to get it to update "table1".

Any ideas how this can be done?

View Replies View Related

Executing Sql Command -- Insert, Update And Delete

how can i make the function return true only if the execution is successfull (see bold red below)? Currently the function is returning true wheather it is successfull or not. Code:

View Replies View Related

How To Declare Session Variables And Use In Insert And Update

how to declare session variables and use it in insert and update sql statements... the scenario is I have:

2 html forms
2 ASP FILES

I am able to trap data from the first form into the acces table..but my second form(which is continuation of first form) has a update query....(ie...it shld update the same record the one inserted from the 1st form )..both the forms work on table in access db

its an annonymus...questionnaite...therefore i am not trapping any user name or login id...but the requirement is the survey made shld be unique....as in no user shld be able to answer the questions twice.

View Replies View Related

Date Issues Asp To Access Db Convert To Mysql Db

having issues submitting dates to a mysql db, ive converted the database from access to mysql and im having issues submitting dates. this is what i have when submitting to access
Code:

View Replies View Related

ASP/mySQL Incorrect Date Format Returned

I have all of the dates I use in my tables stored as date in the YYYY/MM/DD format, with the columns set to DATE.

When I do any queries on the database (not usinf ASP) I get YYYY/MM/DD format returned.

When I do a recordset("datefield") ASP request I get D/M/YYYY returned. I have not asked anything to convert it, I have no idea where it is getting converted. It is a real pain, as I need to copy these dates through out the table, and they are getting returned in the wrong format.

View Replies View Related

MySQL Date To ASP Date

I found some script that converts ASP to MySQL. Now I need to reverse that process.MySQL Order_Date is the field I need to convert.I have a select list for order nunber - 'order date Where order date = MYSQL date stored in db.Sounds simple enough, but is very difficult so far to implement.

View Replies View Related

MySQL Date Vs ASP Date

I am trying to compare a date in MYSQL field with the system date -

today = date()

sqlchk = "SELECT COUNT(*) FROM fib_note WHERE fib_note_actdate =< " &"'" &today &"'" & " AND fib_note_actdone = 0"

Set objRS = objConn.Execute(sqlchk)

It is freakin out as the date in the DB is YYYY-MM-DD where as the date from date() is MM/DD/YYYY how can I get around this?

View Replies View Related







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