SeanDM
Mechanical
- Jul 5, 2005
- 1
Hi guys, I'm currently learning how to work with a program written in Visual BASICS V5.0 that updates and selects from a SQL Database. I'm just having a bit of trouble converting the SQL arguements into Visual Basics language. If anyone could help me out, I'd really really appreciate it.
Here's the table I'm selecting the data from in BASICS code:
"SELECT ap1.dt_lst_updt, ap1.id_user_lst_updt " _
+ "FROM agrmt_phase ap1 " _
+ "WHERE ap1.nbr_tob_agrmt = " + m_Agreement _
+ " AND ap1.dt_lst_updt = " _
+ "(SELECT MAX(ap2.dt_lst_updt) " _
+ "FROM agrmt_phase ap2 " _
+ "WHERE ap2.nbr_tob_agrmt = " + m_Agreement + ")"
If I want to update the dt_lst_updt to the current time when that command is executed and id_user_lst_updt to the user logged onto that program (This I guess I'll figure out later)
Thank you VERY much in advance!!!
Here's the table I'm selecting the data from in BASICS code:
"SELECT ap1.dt_lst_updt, ap1.id_user_lst_updt " _
+ "FROM agrmt_phase ap1 " _
+ "WHERE ap1.nbr_tob_agrmt = " + m_Agreement _
+ " AND ap1.dt_lst_updt = " _
+ "(SELECT MAX(ap2.dt_lst_updt) " _
+ "FROM agrmt_phase ap2 " _
+ "WHERE ap2.nbr_tob_agrmt = " + m_Agreement + ")"
If I want to update the dt_lst_updt to the current time when that command is executed and id_user_lst_updt to the user logged onto that program (This I guess I'll figure out later)
Thank you VERY much in advance!!!