Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
business-logic
- Page 1
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
1 Day Ago
by graceweb
This was a fascinating read, Victor! The way you applied psychological principles like authority bias and loss aversion really shows how impactful small tweaks can be. I especially appreciated the emphasis on emotional storytelling, it’s often overlooked but clearly powerful. Thanks for sharing such actionable insights!
Re: How Does Flutter Handle State Management Internally?
Programming
Software Development
1 Week Ago
by kearawill
… ideal for large-scale applications that need strict separation of
business
logic
. Bloc is strongly typed and highly testable. The main drawback…
McCharts - ArkTS
Programming
Software Development
2 Months Ago
by 杨_659
… four parts have a sequence relationship and contain certain algorithm
logic
. I can simply explain it with a concept map.… calculating the maximum text width. I will also write some
logic
in the code. Please read the code carefully: ```js…t draw this specifically, you can look at your own
business
), the starting point y-coordinate is the same as …
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
2 Months Ago
by asadkhan12
Your post perfectly highlights the power of behavioral psychology in funnel optimization! The results speak for themselves—small yet strategic psychological tweaks can make a massive impact on conversions. Trust signals, emotional storytelling, and cognitive ease are often overlooked but make all the difference. The way you broke down each …
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
1 Month Ago
by graceweb
It’s amazing how just a few strategic changes can turn a struggling funnel into a success story. The emphasis on trust signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for highlighting those key takeaways! It’s a good reminder that sometimes it’s not …
Business Logic
Programming
Software Development
13 Years Ago
by N1GHTS
…be picked up by anyone and modified to change
business
policies which in many cases would involve changes …for the job. My primary concern is building complex
business
logic
using this language. Another consideration is using Lua, which… is to use COBOL, a language built for
business
logic
and still one of the most widely used programming…
Re: Business Logic
Programming
Software Development
13 Years Ago
by N1GHTS
… does not mean that it is best suited for
business
logic
, in much the way that weather modelling software can…as much as it is satisfying complex conditions. Some
logic
in these scripts are highly recursive, requiring that the… conditions that changed depending on changes of status during
logic
interpretation. Thank you for taking the time to help…
Re: Business Logic
Programming
Software Development
13 Years Ago
by TrustyTony
… reading that Python philosophy encourages agrees with interests of your
business
logic
. I do not know exactly what are your requirements, source… it. You would not be first to use Python in
business
either: [url]http://linux.downloadatoz.com/paythyme/[/url], however this…
Re: Business logic layer
Programming
Software Development
15 Years Ago
by DdoubleD
…find it much easier if you have not embedded your
business
logic
(methods) inside the form code... For the functions …listed, most of the methods should go into the
business
layer even though these methods represent what you are … your form presentation. However, you can easily call these
business
objects (classes and methods) from the form code to…
Business logic layer
Programming
Software Development
15 Years Ago
by Mitja Bonca
…, he proposed me that I rather split my code into
business
logic
layer and data access layer. And now I would like… me out on a simple example of how to do
business
logic
for this example (it`s about library): Database tables(Parameters…
Business Logic Set New Criteria
Programming
Software Development
10 Years Ago
by Yuki_1
…gen_modifyUser = SYSTEM_USER_LOGIN.UserName; row.gen_entryUser = SYSTEM_USER_LOGIN.UserName; in
business
Logic
layer with the code become not null. Here is my…
business
logic
code: public static bool TMS_GET_PROXIMITY_VALID_TO_USE(string s_proximityNumber) { bool b_valid…
Re: Business Logic
Programming
Software Development
13 Years Ago
by TrustyTony
This makes your job for Python more
logic
than
business
I think, something like knowledge base ([url]http://pyke.sourceforge.…
Separation of Business logic and Presentation logic for non OOP.
Programming
Web Development
10 Years Ago
by veedeoo
…effectively as a template engine by way of
business
logic
and presentation
logic
separation. **What are the requirements?** 1… 4. Simple exposure to PDO **What is
business
logic
?**
Business
logic
can be the function processing a resulting array …codes written in PHP with both the
business
logic
and presentation
logic
mixed on a single page. For …
Validation of controls in the business logic layer
Programming
Web Development
14 Years Ago
by whelaro
… application where the validation (ranges) checks are controlled in the
business
logic
layer. The code looks similar to this: [code] public string…'s TextBox (or all controls in general) controls to the
business
logic
layer? I'm pretty sure I'm doing this incorrectly…
Re: Separation of Business logic and Presentation logic for non OOP.
Programming
Web Development
10 Years Ago
by veedeoo
… that the class will be capable of something like this.
business
$fruits = $view->data(array('apple','banana','orange','grapes','pears…
Re: Business logic layer
Programming
Software Development
15 Years Ago
by DdoubleD
Here is a crude example of what you wanted, but with only a few of the methods and with the code guts removed. After responding to your new thread, I decided to put together the sample you were looking for. If this answers you original question in this thread, go ahead and mark as solved and we can continue to work out any details in the other …
Re: Business logic layer
Programming
Software Development
15 Years Ago
by Mitja Bonca
Thanks for your effort, I really appreciate it. This is what I did (just one example) for the DAL: [CODE]public class DataAccessLayer { public static DataSet GetAuthors(string AuthorsName) { using (SqlConnection sqlConn = new SqlConnection()) { using (SqlDataAdapter da = new …
Re: Business logic layer
Programming
Software Development
15 Years Ago
by DdoubleD
No worries... Looking at that example, it looks ok to me on the surface except for the line: [icode]da.SelectCommand cmd = new SqlCommand("GetAllAuthors", sqlConn);[/icode], which I don't think will compile with the "cmd" segment...
Re: Business logic layer
Programming
Software Development
15 Years Ago
by Mitja Bonca
You are right, it has to be like: [CODE] using (SqlDataAdapter da = new SqlDataAdapter()) { SqlCommand cmd = new SqlCommand("GetAllAuthors", sqlConn); //This is a stored procedure da.SelectCommand.CommandText = AuthorsName; da.SelectCommand.CommandType = …
Re: Business logic layer
Programming
Software Development
15 Years Ago
by Mitja Bonca
As you said, this is not working, it does not get the stored procedure. How would you do it: [CODE] using (SqlDataAdapter da = new SqlDataAdapter()) { da.SelectCommand cmd = new SqlCommand("GetAllAuthors", sqlConn); //This is a stored procedure da.SelectCommand.CommandType = …
Re: Business logic layer
Programming
Software Development
15 Years Ago
by Mitja Bonca
All set. I had a wrong connection string, that`s why it didn`t work. Thread salved!
Re: Business Logic Set New Criteria
Programming
Software Development
10 Years Ago
by DaveAmour
Which object is null? The debugger is your friend - use it to see.
Re: Business Apps
Programming
Software Development
15 Years Ago
by ~s.o.s~
…. You can develop a core
business
functionality using web services i.e. expose your
business
logic
using web services. You can…short, a web and standalone client for consuming a
business
functionality exposed as web services [which are nothing but … an invoice etc. But then again, these *serious*
business
apps might just put you off and you'd lose…
3 tier app, data access layer, business logic layer
Programming
Software Development
15 Years Ago
by skylancer
… 3 transaction inside (insert, update, delete) I make this in
business
layer, so that the OleDBConnection (open and close), OleDbTransaction placed… in
business
layer and I pass this as parameter to data access…
Is it better to keep business logic in the database or in code
Programming
Web Development
6 Years Ago
by B_3
… SQL - I would 100% agree that the database is the
business
, the api is method to interact with the database and…
Re: Separation of Business logic and Presentation logic for non OOP.
Programming
Web Development
10 Years Ago
by DJBirdi
Well done veedeoo! Let's hope after reading this, people atleast realize how easy it is to implement PDO and stop using `mysql_*`. Everytime I see a question like "how do I make my code more secure" and see them using `mysql_*`, I die a little inside. Lol
Re: Separation of Business logic and Presentation logic for non OOP.
Programming
Web Development
9 Years Ago
by Gideon_1
Thumbs up, very very awesome, you just pin pointed my most hated thing in PHP, spaghetti codes.
Re: 3 tier app, data access layer, business logic layer
Programming
Software Development
15 Years Ago
by kvprajapati
Learn the Entity Data Model. 1. [url]http://msdn.microsoft.com/en-us/library/aa697428%28VS.80%29.aspx[/url] 2. [url]http://msdn.microsoft.com/en-us/library/aa697427%28VS.80%29.aspx[/url]
Re: 3 tier app, data access layer, business logic layer
Programming
Software Development
15 Years Ago
by skylancer
[QUOTE=adatapost;1213573]Learn the Entity Data Model. 1. [url]http://msdn.microsoft.com/en-us/library/aa697428%28VS.80%29.aspx[/url] 2. [url]http://msdn.microsoft.com/en-us/library/aa697427%28VS.80%29.aspx[/url][/QUOTE] Thanks for the answer, but it's to complicated, I need more time to learn it, while I have deadline. I give u my code …
Re: 3 tier app, data access layer, business logic layer
Programming
Software Development
15 Years Ago
by kvprajapati
Suggestions: 1. Do not return dataReader if performance of an application is not an issue. 2. Read and learn design patterns from these articles/blogs. 1. [url]http://www.codeproject.com/KB/cs/dalmethodcodegenerator.aspx[/url] 2. [url]http://www.codeproject.com/KB/architecture/ThreeTierThreeORM.aspx[/url] 3. [url]http://www.codeproject.com/KB/cs/…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC