Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello every one!

I want to create a BLL(Business Logic Layer) in my project, but i need some help.
I search here http://msdn.microsoft.com/en-us/library/aa581780.aspx[^]
for same information, and i get it.

My big problem, is that my database is in Oracle, and i need to use(PL/SQL)
I study Pl/Sql, but is tonally different do declaire things in VB.

example: VB.BLL (DTBase Local)
SQL
Public Class Client
        Public Function ME()
            Return DAL.ExecuteScalar("SELECT a.name, a.id FROM user a where name = 'S000'", Nothing)
        End Function
    End Class

example: VB.Oracle.BLL (DTbase Server)
Declare Function vbdf Lib "" Alias "" (ByVal a As Integer) As Boolean
...

in pl/sql exemple:
SQL
DECLARE
  CURSOR c_empl IS
    SELECT  pd.emplid
    ,   pd.empl_rcd#
    ,   ba.acct_cd
    FROM  ps_personal_data    pd
    ,     ps_budget_actuals  ba
    ...
END;


Can anyone explain me or suggest something..how to do it or an advice.


I will appreciate, thanks. :)
Posted
Comments
Sudhakar Shinde 22-May-13 5:27am    
What is your problem? Do you want to understand how to write PL/SQL ?
Nillo123 22-May-13 5:40am    
Yes, but in the Bll..vb

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900