Dynamics AX 3.0 'da ODBC Insert-Update
Son olarak ODBC kullanarak Insert ve Update işlemlerine bakalım, Bu işlemin diğer yaptığımız işlemden çok bir farkı yok.
Static boolean ODBCInsertUpdate()
{
str strSQL;
ODBCConnector ODBCContent; // bir önceki makalede bulunan fonksiyon bulunduğu Class
Statement statementContent;
;
try {
strSQL=strfmt("INSERT INTO Table (fld1,fld2) VALUES ('%1','%2')",statement1,statement2);
statementContent=ODBCConnector::newODBCConnectionStatement();
statementContent.executeUpdate(strSQL);
statementContent.close();
return true;
}
catch (Exception::Error)
{
throw Exception::Error;
}
catch (Exception::Break)
{
throw Exception::Break;
}
catch (Exception::DDEerror)
{
throw Exception::DDEerror;
}
catch (Exception::Deadlock)
{
throw Exception::Error;
}
catch (Exception::Info)
{
throw Exception::Info;
}
catch (Exception::Internal)
{
throw Exception::Internal;
}
catch (Exception::Numeric)
{
throw Exception::Numeric;
}
catch (Exception::Sequence)
{
throw Exception::Sequence;
}
catch (Exception::Warning)
{
throw Exception::Warning;
}
}