What is the intended purpose of MySqlDataAdapter.UpdateBatchSize for inserted rows while calling Update?
1) My intuitive understanding was that it should construct single insert statement containing multiple values. Also internal property called batchableCommandText looked promising. Unfortunately updating table with new lines just issues "a batch of" single line inserts. Is that intended behaviour?
2) Looks like batchableCommandText content is not used for anything, just for null comparisons. Is that intended? Did I miss something?
1) My intuitive understanding was that it should construct single insert statement containing multiple values. Also internal property called batchableCommandText looked promising. Unfortunately updating table with new lines just issues "a batch of" single line inserts. Is that intended behaviour?
2) Looks like batchableCommandText content is not used for anything, just for null comparisons. Is that intended? Did I miss something?