From:
<car...@te...> - 2002-12-22 10:40:31
|
Hello: Try: fbCommand.CommandText = "INSERT INTO properties(id, propName, propValue) VALUES (1, 'title', ?)"; fbCommand.Parameters.Add("@propValue", FirebirdSql.Data.Firebird.FbType.VARCHAR, 100, "propValue"); fbCommand.Parameters[0].Value = "some value"; fbCommand.Prepare(); fbCommand.ExecuteNonQuery(); -- Best regards Carlos Guzmán Álvarez Vigo-Spain "No tengo dones especiales.Sólo soy apasionadamente curioso" Albert Einstein, científico. |