I have some troubles with JBuilder! I programmed in C++ Builder, but
now I have to use JBuilder... the question is: I wanna know how can I
insert, update and delete itens (or dates) in a table using JTable
and queryDataSet? I Know that in C++Builder is this way:
{
Query1->Close();
Query1->SQL->Clear();
Query1->SQL->Add("insert into pessoa values (1,''joao'')");
Query1->ExecSQL();
}
But I don´t know how can I do this in JBuilder... somebody can help
me?
Other thing: how can I do a connection with the Data Base using
DBSwing components?