Write date to SQL using VBA -


till today used function write dates access form sql server. today noticed now() function not working anymore. tried date() - still not working. getdate cannot use in vba. need have exact date minutes. suggestions? thank in advance!

currentdb.execute ("update ci set d_date = now() id = " & id & ";"), dbseechanges 

concatenation of variables/constants in vba performed using ampersand operator. however, there few variations depending on data types.

if field value supplied string need enclosed within, string literal (single or double quotes).

dim myname string myname = "paul" strsql = "update tablename set textfieldname = '" & myname & "'" 

the above not safe, errors happen when using names single quotes in them. so, better way.

dim myname string myname = "paul o'connor" strsql = "update tablename set textfieldname = " & chr(34) & myname & chr(34) 

for dates, need enclosed in between #,

strsql = "update tablename set datefieldname = #" & date() & "#" 

it numeric values need no specific enclosures.

dim mynumber long mynumber = 55 strsql = "update tablename set numberfieldname = " & mynumber 

so in query needs be,

currentdb.execute "update ci set d_date = #" & now() & "# id = " & id, dbseechanges 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -