Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...SQL and SQL Ser...SQL and SQL Ser...Is the DNN PetaPoco DAL limited to accessing SPs in default “dbo” schema?Is the DNN PetaPoco DAL limited to accessing SPs in default “dbo” schema?
Previous
 
Next
New Post
10/26/2015 10:09 AM
 

Can’t say I disagree with you regarding security benefits, but DNN should be robust enough to handle this IF the developer chooses to use DNN’s DAL. It could default to the default schema, but then could be overridden. Maybe with an argument in the Instance() function?

 
New Post
10/26/2015 10:21 AM
 

James,

I think sometimes people get confused because they look at some of our abstractions and assume that they have to use them. The answer in many cases is to sometimes drop down one level of abstraction and see what the "raw" code looks like.  If you look at the ExecuteScalar in the default SqlDataProvider, you will find that it looks like this:

        public override T ExecuteScalar<T>(string procedureName, params object[] commandParameters)
        {
            return PetaPocoHelper.ExecuteScalar<T>(ConnectionString, CommandType.StoredProcedure, DatabaseOwner + ObjectQualifier + procedureName, commandParameters);
        }

Instead of calling DataProvider.Instance().ExecuteScalar, just use the PetaPocoHelper to make the call.  As you can see, the core SqlDataProvider is where the "DBO" is getting prepended, since that is the value that is defined in web.config for the default SqlDataProvider.


Joe Brinkman
DNN Corp.
 
New Post
10/26/2015 10:44 AM
 

Thank Joe, No assumption here, the first module I wrote back in 2005 or so bypassed the DAL altogether. I do have question about your suggestion... Would the PetaPoco call still be part of the published API. IOW could it be deprecated or removed in a future version of DNN w/o notice? 

 
New Post
10/26/2015 1:26 PM
 

James,

 

The PetaPocoHelper is part of the Public API.  You are safe to use this helper within your own DataProviders.


Joe Brinkman
DNN Corp.
 
New Post
10/26/2015 1:39 PM
 

Thx!

 
Previous
 
Next
HomeHomeDevelopment and...Development and...SQL and SQL Ser...SQL and SQL Ser...Is the DNN PetaPoco DAL limited to accessing SPs in default “dbo” schema?Is the DNN PetaPoco DAL limited to accessing SPs in default “dbo” schema?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out