i work on vb.net with mysql database i use ADO.
the problem is that i can't insert into the table arabic or other unicode string.
Expand|Select|Wrap|Line Numbers
- Dim rs As New ADODB.Recordset
- rs.Open("select * from MyTable", DB.Connection, 3, 2)
- rs.AddNew()
- rs.Fields("MyField").Value = "السلام"
- rs.Update()
- rs.close()