Hi. I'm attempting to connect to a Microsoft Access database and get am pulling out some data to a ResultSet. I'm attempting to format the date using the format command SELECT tblCases.fldCaseID, tblCases.fldCaseName, tblCases.fldCaseTypeID, Format(fldDateStart,"dd/mm/yyyy") AS Expr1, Format(fldDateEnd,"dd/mm/yyyy") AS Expr2, tblCases.fldUserID FROM tblCases; This is the query string and I've tested it in Access 97 and it is valid. However when I put it in my query string in my Java class I get "Too Few Parameters. Expected 1." reported back to me. If I remove the Format command from the query then it works fine. Can anyone help?
lapogunev
Greenhorn
Joined: Apr 22, 2002
Posts: 1
posted
0
Might be the problem with "" quotes in the format. Chnage it to single quotes or make it a proper java string by proper concatenation. Hope this helps. venug.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.