If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > can't insert record to database

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-05-04, 00:03
fisya fisya is offline
Registered User
 
Join Date: Mar 2004
Posts: 53
Unhappy can't insert record to database

i'm now building a web base system. my problem is when i fill in the form that i made, the fill cannot be insert into database. below is the attachment of the page script and the error.

is there anybody that can help me?please......
Attached Files
File Type: txt error.txt (4.9 KB, 82 views)
Reply With Quote
  #2 (permalink)  
Old 04-05-04, 00:31
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
it is quite likely that the reason you are getting this error is due to the method you are using to connect to the database or the permissions on the database itself.

Can you include the section of code that creates the db connection for doing the insert query??
Reply With Quote
  #3 (permalink)  
Old 04-05-04, 00:53
fisya fisya is offline
Registered User
 
Join Date: Mar 2004
Posts: 53
insert database

i'm using dreamweaver MX. i'm using the server behaviour(insert record).
below are the coding generated by dreamweaver MX

<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/sambungan.asp" -->
<%
' *** Edit Operations: declare variables

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" & Request.QueryString
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "form1") Then

MM_editConnection = MM_sambungan_STRING
MM_editTable = "tb_aduan"
MM_editRedirectUrl = "index.asp"
MM_fieldsStr = "textfield|value|tarikh|value|masa|value|select|va lue|blok|value|tingkat|value|bilik|value|kerosakan |value|textfield3|value"
MM_columnsStr = "id_user|',none,''|tarikh|',none,NULL|masa|',none, NULL|lokasi|',none,''|blok|',none,''|tingkat|none, none,NULL|no_bilik|',none,''|kod_kerosakan|',none, ''|sebab_kerosakan|',none,''"

' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|")
MM_columns = Split(MM_columnsStr, "|")

' set the form values
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
Next

' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If

End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it

Dim MM_tableValues
Dim MM_dbValues

If (CStr(Request("MM_insert")) <> "") Then

' create the sql insert statement
MM_tableValues = ""
MM_dbValues = ""
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_formVal = MM_fields(MM_i+1)
MM_typeArray = Split(MM_columns(MM_i+1),",")
MM_delim = MM_typeArray(0)
If (MM_delim = "none") Then MM_delim = ""
MM_altVal = MM_typeArray(1)
If (MM_altVal = "none") Then MM_altVal = ""
MM_emptyVal = MM_typeArray(2)
If (MM_emptyVal = "none") Then MM_emptyVal = ""
If (MM_formVal = "") Then
MM_formVal = MM_emptyVal
Else
If (MM_altVal <> "") Then
MM_formVal = MM_altVal
ElseIf (MM_delim = "'") Then ' escape quotes
MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
Else
MM_formVal = MM_delim + MM_formVal + MM_delim
End If
End If
If (MM_i <> LBound(MM_fields)) Then
MM_tableValues = MM_tableValues & ","
MM_dbValues = MM_dbValues & ","
End If
MM_tableValues = MM_tableValues & MM_columns(MM_i)
MM_dbValues = MM_dbValues & MM_formVal
Next
MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close

If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If

End If
%>
<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "1"
If (Request.QueryString("carian") <> "") Then
Recordset1__MMColParam = Request.QueryString("carian")
End If
%>
<%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_sambungan_STRING
Recordset1.Source = "SELECT nostaffuitm, namastaffuitm, kodjawatan, samb FROM [staff IT] WHERE nostaffuitm = '" + Replace(Recordset1__MMColParam, "'", "''") + "'"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()

Recordset1_numRows = 0
%>
<%
Dim Recordset2
Dim Recordset2_numRows

Set Recordset2 = Server.CreateObject("ADODB.Recordset")
Recordset2.ActiveConnection = MM_sambungan_STRING
Recordset2.Source = "SELECT lokasi FROM tb_lokasi"
Recordset2.CursorType = 0
Recordset2.CursorLocation = 2
Recordset2.LockType = 1
Recordset2.Open()

Recordset2_numRows = 0
%>


i don't know whether the info is enough already.if the info is not enough,just tell me...

i really need help with my problem
Reply With Quote
  #4 (permalink)  
Old 04-05-04, 00:57
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
Nah, the info isn't there.... that is the same as the attached text file above...

in you code you use MM_editConnection to execute your query... MM_editConnection = MM_sambungan_STRING which is fine...

but MM_sambungan _STRING must be defined in the include file Connections/sambungan.asp because I can't see it anywhere else....

so what I need to look at is Connections/sambungan.asp

Now before you send that, have a look through it and replace the username and password with something like myuser and mypassword so you don't give away an security details.
Reply With Quote
  #5 (permalink)  
Old 04-05-04, 03:04
fisya fisya is offline
Registered User
 
Join Date: Mar 2004
Posts: 53
connection

actually before this the insert function did working. however, this problem occurs after i make a new connection. when i open this page at home, the page running as usual as it did before the problem. actually i'm now doing my internship programme, so i do all the designning task at my office.

below are the coding that you want.

<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="true"
' Catalog=""
' Schema=""
Dim MM_sambungan_STRING
MM_sambungan_STRING = "Driver={Microsoft Access Driver (*.mdb)}; DBQ=c:\inetpub\wwwroot\datam\data3.mdb;"
%>


please,please and please help me....
thanks
Reply With Quote
  #6 (permalink)  
Old 04-05-04, 03:08
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
I'd check the permissions on the database file itself. Make sure that your IIS user has full control on the file.....
Reply With Quote
  #7 (permalink)  
Old 04-05-04, 21:25
fisya fisya is offline
Registered User
 
Join Date: Mar 2004
Posts: 53
helllllllllllllllp

rock slide help me...plz...how? i need to pass up this system on this week...
Reply With Quote
  #8 (permalink)  
Old 04-05-04, 21:47
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
locate the file on your server, right click and view properties/security. That should show you who has permissions on the file.

The user account the you have set IIS to run as probably need access to the file (read and write access).

Is it possible that something previously is opening the database and putting a read only lock on it??
Reply With Quote
  #9 (permalink)  
Old 04-06-04, 01:13
fisya fisya is offline
Registered User
 
Join Date: Mar 2004
Posts: 53
Talking

thank u for ur information..now my system can run properly as what i want...thank u very much...

next time if i have a problem i will ask u....
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On