Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"Views" for Microsoft Access database !!!

Status
Not open for further replies.

daniorza

Programmer
Oct 1, 2001
2
RO
When I try to select views in Microsoft Access database in a java application within jdbc:eek:dbc and the sql statement is "select Name from sysobjects where xtype = 'v'" I get this :

Code:
 [Microsoft][ODBC Microsoft Access Driver] The Microsoft Jet database engine cannot find the input table or query 'SYSOBJECTS'.  Make sure it exists and that its name is spelled correctly.

My driver is not good ?
How can I create a view ?
Thank you !!!

 
Try this

select Name from Msysobjects where xtype = 'v'

The table is called Msysobjects and not sysObjects.

Nick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top