1st sorry for my english :-)
Problem: While inserting a text with "@" character into database, the
H2Sharp throw "missing parameter" exception
...
H2Command command = conn.CreateCommand();
command.CommandText = "INSERT INTO
addressbook(id_adr,name_adr,email_adr) VALUES (1,'Mario',
'
ma...@g.com')";
command.ExecuteNonQuery(); //throw exception "missing parameter"
...
id_adr is BIGINT
name_adr and email_adr are VARCHAR(50)
Is there some special escaping in H2Sharp wrapper?