Hi Volkan..

You can use Connection and SqlStatement objects for your requirements..

Sample :

Connection Con = new Connection();
Statement Stmt = Con.createStatement();
ResultSet R = Stmt.executeQuery('Any Statement');
while ( R.next() )
{
print R.getString(1); // get 1'st colon
}


You can run any sql query,sp,view..

Regards..

Anil Özay

-----Original Message-----
From: volkankaraboga [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 24, 2003 2:41 PM
To: [EMAIL PROTECTED]
Subject: [development-axapta] executing sql strings


Hi all!!

are ther any function in axapta to execute any string sql statements
(select,insert,update) because I must prepare my sqlstatemnts by myself depend on 
users request.




Yahoo! Groups Links


To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/

To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/






Yahoo! Groups Links

To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/

To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/





Reply via email to