When using:
I submit the info to the DB.
I have added a field called timestamp to the DB and try to use:
With this , i get teh "syntax error"
Any suggestions? I can not seem to remedy this.
Code:
sql_insert = "insert into fullsizep (toperson, sendto, filename) values ('" & _
toperson & "', '" & sendto & "', '" & filename & "')"
I submit the info to the DB.
I have added a field called timestamp to the DB and try to use:
Code:
sql_insert = "insert into fullsizep (toperson, sendto, filename, timeStamp) values ('" & _
toperson & "', '" & sendto & "', '" & filename & "', 'date() + time()')"
With this , i get teh "syntax error"
Any suggestions? I can not seem to remedy this.