NETProvider icon indicating copy to clipboard operation
NETProvider copied to clipboard

Can't default values

Open Zeki-Gursoy opened this issue 4 months ago • 1 comments

create table mytable(field integer default 10);
var tbl = new DataTable();

using var adp = new FbDataAdapter("select * from mytable", _cn);

adp.Fill(tbl);

//tbl.Columns[0].DefaultValue = 10;

DataGrid.DataSource = tbl;

DataGrid is enabled Add for user. When user it is moved to the "NewRow" row, the field's default value is "0". This indicates that it has not been added to the DataTable schema.

I can set the default values ​​manually, but it's annoying in a table with many columns.

Zeki-Gursoy avatar Oct 04 '25 11:10 Zeki-Gursoy

Datatables and dataadapters are basically obsolete, so although there might be some missing functionality, I wouldn't recommend using those. I'll leave this issue open, but as a very low priority.

cincuranet avatar Oct 30 '25 09:10 cincuranet