Hello,

I have found some problems with the ddex and tableadapter :

1) when you create a table adapter with a request like :
  "select * from MYTABLE". The select,update,delete,insert command are 
created but if the request like "select idmytable,c1,c2 from MYTABLE" 
only select,update,delete command are created but  not the insert.

2) When you create a tableadapter only the command select is put into 
the internal variable _commandcollection so when you try to add a 
transaction you must enumerate all command to assign the transaction.
Ex :
  with the others providre you can do :
 foreach (dbcommand cmd in _commandcollection)
  cmd.transaction = mytransact;
 with fb provider : you must do :
  insertcommand.transaction = mytransact;
  updatecommand.transaction = mytransact;
  selectcommand.transaction = mytransact;
  deletecommand.transaction = mytransact;

3) when you try  to do a drag and drop from the server explorer i 
obtain this error : "La colonne is_system_view n'appartient pas à la 
table Views"

thanks



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to