help on jet 3.1 convrting to jet 4.0

  • Thread starter Thread starter ragu g
  • Start date Start date
R

ragu g

I am using jet engine 3.1 and converting to jet 4.0
an sql query is not funtioning gives error.

the query is select name,name+space(2) as name1 from table

I need help how to connect to jet 4.0 and to run the query successfully.

Thanks for ur reply

regards
ragu
 
¤ I am using jet engine 3.1 and converting to jet 4.0
¤ an sql query is not funtioning gives error.
¤
¤ the query is select name,name+space(2) as name1 from table
¤
¤ I need help how to connect to jet 4.0 and to run the query successfully.
¤

The keyword "name" is a Jet reserved word and must be enclosed within brackets:

select [name], [name] & space(2) as name1 from tablename


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top