Hello:
I have committed some changes to the CVS, they need testing, i will try to test them before the weekend.
If all goes well i will do a new release this weekend with these changes.
A simple sample of usage on a insert command

           FbConnection c = new FbConnection(csb.ToString());
           c.Open();

FbCommand insert = new FbCommand("insert into octets_table (char_field, octets_buffer) values (@p1, @p2)", c);
           FbParameter p1 = insert.Parameters.Add("@p1", FbDbType.Char);
           FbParameter p2 = insert.Parameters.Add("@p2", FbDbType.Char);

           p1.Size     = 10;
           p1.Value    = "Una prueba";

           p2.Size     = 20;
           p2.Charset  = FbCharset.Octets;
           p2.Value    = Guid.NewGuid().ToByteArray();

           insert.ExecuteNonQuery();

           c.Close();

--
Carlos Guzmán Álvarez
Vigo-Spain

http://carlosga.blogspot.com/



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to