I hve mysql, tel me hw to create table and hw to attache with v.b?
-
i want to learn more abt vb and mysql
-
Answer:
what????!?!?!?!?!?!? Use real words!! instead of abbreviations!
muthu k at Yahoo! Answers Visit the source
Other answers
Use GUI MySQL Administrator to create table. Use MyODBC driver to connect with VB
Venky
Try it at: http://www.asp.net or http://msdn.microsoft.com Download Visual Web Developer... its good... and useful for ur question..
Web-designer ©
go to www.abt vb.com or www.www.mysql.com
dnnyo
quite easy go in projects->components->in control toolbox->check microsoft ado datacontrol 6.0[oledb]->click ok->new icon would appear in tool box->drag it to vbs window->set its recordsource,caption and all other prop according to your need if need more information can email me all the best
monica705
1. Download and install sqlyog from download.com ...its too easy to create the database by this software... 2. Download ODBC driver from net and put it in ur project....this driver will do the connecting job .... Good luck :D
zoha
i can give u my connection string to interface to mysql from vb.net: 'put these 2 lines above your class header to import ODBC Imports System.Data Imports System.Data.Odbc Dim myConnection As New OdbcConnection Dim myDataAdapter As OdbcDataAdapter Dim myDataSet As DataSet Dim myconstring, strSQL, tempstr As String Dim mycommand As New OdbcCommand myconstring = "DRIVER={MySQL ODBC 3.51 Driver};" & _ "SERVER=localhost;" & _ "DATABASE=mydatabase;" & _ "UID=root;" & _ "PASSWORD=;" & _ "OPTION=3;" myConnection.ConnectionString = myconstring mycommand.Connection = myConnection try myconnection.open() strSQL = "Select * from tbltest" mycommand.commandText = strSQL myDataAdapter = New OdbcDataAdapter(strSQL, myConnection) myDataSet = New DataSet myDataAdapter.Fill(myDataSet, "tbltest") Catch ex As Exception response.write(ex.message) End Try myConnection.Close() pretty much straightforward provided you are using mysql odbc driver version 3.51 and your mysql setup and installation is OK, you should be able to pull out the data from mysql by modifying the query statement and the other fields from my code.. best of luck and regards! drop me an email, i can send you many codes about connecting and using mysql as database and vb.net as the front end program. i will be happy to send you my codes as i am doing a company project using vb.net and mysql. :)
MiMiQuE
Related Q & A:
- How does MySQL reindex a table?Best solution by Stack Overflow
- Can I estimate the row count of a large mysql table using the disk space?Best solution by Database Administrators
- What is Hash Table, how to create a hash table?Best solution by Stack Overflow
- How do I create an HTML table, in jQuery, with JSON data?Best solution by Stack Overflow
- How to create a table in PHP with MySQL?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.