Re: MSAccess get Query SQL source possible
- From: webmaster.hxtt@xxxxxxxxx
- Date: 26 Apr 2006 09:13:37 -0700
If you have only a few QuerySQL, the quicker wayis to copy all sql
manually in MS Access.
If you need a program solution, you can use HXTT
Access(http://www.hxtt.com/access.html), a commerical JDBCdriver for MS
Access.
ResultSet rs=dbmd.getTables("adb",null ,null, new String[]{"VIEW"});
while(rs.next()){
String viewName=rs.get("table_name");
String sql=rs.get("remarks");
//...
}
.
- References:
- MSAccess get Query SQL source possible
- From: Jochen Riekhof
- MSAccess get Query SQL source possible
- Prev by Date: Re: Database and java.sql.SQLException Questions
- Next by Date: UnsatisfiedLinkError
- Previous by thread: Re: MSAccess get Query SQL source possible
- Next by thread: Hibernate and session
- Index(es):