Is it possible to call backend procedures with ADO control?
Answer Posted / sarada
Yes it is possible,the code as follows:
Public myConn As New ADODB.Connection ‘In Declaration
Section
myConn.open “DRIVER={MySQL ODBC 3.51
Driver};SERVER=127.0.0.1;Database=Db;UID=root;PWD=changeme”
myConn.CursorLocation = adUseClient
If myConn.State = ADODB.adStateOpen Then
myConn.execute “CALL sp_deleter( )“ 'Procedure calling
End If
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the Internet tools available in VB 6.0?
Specify technical & functional architecture of your last 2 projects.
what are the Types of cursors in RDO?
What are forms in visual basic?
What is snapshot in vb?
Explain the "cursortype" and "Locktype" in VB?
What is "Reserved Error -1209"?
Explain about form creation in Visual Basic?
How do I implement an incremental search in list/dir/combo/file boxes?
How can Visual Basic be used for server-side scripting?
Explain Types of DBCombo boxes?
what are the Parts of ODBC?
What is OLEDB?
___ Property is used to count no. of items in a combobox.
What is the use of Immediate, Local Window?