Clear Table

Maddis

Новичок
Регистрация
22.10.2018
Сообщения
27
Благодарностей
3
Баллы
3
Hi, I am trying to clear the Table in ZennoPoster rather than use the ZennoPoster action.

I try:
C#:
project.Tables['leadTable'].Clear();
But this does not work. Can someone help?

Thanks
 
  • Спасибо
Реакции: Phoenix78

BAZAg

Client
Регистрация
08.11.2015
Сообщения
1 788
Благодарностей
2 453
Баллы
113
Hi, I am trying to clear the Table in ZennoPoster rather than use the ZennoPoster action.

I try:
C#:
project.Tables['leadTable'].Clear();
But this does not work. Can someone help?

Thanks
C#:
project.Tables["leadTable"].AddRow(new[]{"123"}); // add demo
project.Tables["leadTable"].GetItems("0-end",true);
107067
 
  • Спасибо
Реакции: Maddis

Maddis

Новичок
Регистрация
22.10.2018
Сообщения
27
Благодарностей
3
Баллы
3
  • Спасибо
Реакции: Phoenix78

Maddis

Новичок
Регистрация
22.10.2018
Сообщения
27
Благодарностей
3
Баллы
3
C#:
project. Tables["leadTable"]. AddRow(new[]{"123"});  add demo
project. Tables["leadTable"]. GetItems("0-end",true);
Посмотреть вложение 107067
Thanks again. All I need to do now is save the table once I have data written to it. Is there a method to get the table contents to string value?

I have tried this but I get an error.

C#:
string CSVFile = @"C:\Test.csv"
string stream = project.Tables["leadTable"].ToString();

System.IO.File.WriteAllText(CSVFile,stream);
 
  • Спасибо
Реакции: Phoenix78

BAZAg

Client
Регистрация
08.11.2015
Сообщения
1 788
Благодарностей
2 453
Баллы
113
Thanks again. All I need to do now is save the table once I have data written to it. Is there a method to get the table contents to string value?

I have tried this but I get an error.

C#:
string CSVFile = @"C:\Test.csv"
string stream = project.Tables["leadTable"].ToString();

System.IO.File.WriteAllText(CSVFile,stream);
C#:
var tb = project.Tables["leadTable"];
tb.AddRow(new[]{"123", "321"});  // add demo
tb.AddRow(new[]{"123","654", "987"});  // add demo

var list = tb.GetItems("0-end",true).Select(x=>string.Join(";", x.ToArray())).ToList();
string stream = string.Join(Environment.NewLine, list);
return stream;
 
  • Спасибо
Реакции: Maddis

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)