Re: [Python.NET] PythonDotNet Digest, Vol 69, Issue 1
by Andrew Svetlov other posts by this author
Aug 14 2009 7:27AM messages near this date
Re: [Python.NET] Issues with running a phyton script from c#
|
[Python.NET] Problem importing .pyd modules after 'import clr'
FRAMEWORK DataRow does not have public constructor without arguments.
You should to do something like
row = data_table.NewRow()
# fill row
data_table.Rows.AddRow(row)
> Hi,
> I'm new in Python.Net programming. I try to build a simple project
> that use DataSet/DataTable/DataRow.
> But when I add a DataRow with this code:
>
> mydatar = DataRow()
>
> I get this error:
>
> Â Â Â Â no constructor matches given arguments.
>
> Any ideas?
>
> Thanks
>
> Marco
>
_________________________________________________
Python.NET mailing list - PythonDotNet@[...].org
http://mail.python.org/mailman/listinfo/pythondotnet
|