From:
<car...@te...> - 2004-03-31 10:52:07
|
Hello: > The problem was that in the FbConnection object the Open method now it's > required. Are you sure ?? this sample works for me: FbConnection connection = new FbConnection(connectionString); string sql = "SELECT * FROM PROJECTS"; FbDataAdapter adapter = new FbDataAdapter(sql, connection); FbCommandBuilder builder = new FbCommandBuilder(adapter); FbCommand i = builder.GetInsertCommand(); FbCommand d = builder.GetDeleteCommand(); FbCommand u = builder.GetUpdateCommand(); -- Best regards Carlos Guzmán Álvarez Vigo-Spain |