Click here to Skip to main content
15,914,905 members

Comments by naperva (Top 4 by date)

naperva 3-Jul-16 8:16am View    
I just created using this commands in terminal:

CREATE DATABASE users;
CREATE TABLE users (id INT, name VARCHAR(20));
INSERT INTO users (id,name) VALUES(0, "Floki");

After commands in terminal I didn't change anythings and I got this codes for displaying table values. I see this table in my mysql database using terminal. I checking your links now but I'm confused :)

+------+-------+
| id | name |
+------+-------+
| 0 | Floki |
+------+-------+
naperva 30-Apr-16 20:22pm View    
An unhandled exception of type 'MySql.Data.MySqlClient.MySqlException' occurred in MySql.Data.dll

Additional information: There is already an open DataReader associated with this Connection which must be closed first.
naperva 29-Apr-16 17:06pm View    
Which? MySqlCommand or directly set to execute?
naperva 29-Apr-16 17:05pm View    
It's left to give error. When I click the button nothing change.