Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4096324
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:01:55+00:00 2026-05-20T20:01:55+00:00

I want to create a some kind of data duplication check before insertion into

  • 0

I want to create a some kind of data duplication check before insertion into the database.

//@param string $table
//@param Array $columnArray 
//ie.Array(firstColumnName=>$firstData, secondColumnName=>$seconddata )
//@return
function isRecordExist($table, $columnArray)
{


return true; // if record exist in mentioned columns

}

Its just dummy implementation. I am looking some generic implementation which I can place as global function and which can be accessible in all modules of the zend project.

As a expert, Could any of you guide me what is the best way to create this function and where so that it would be accessible everywhere.

I have read about Zend_Validate_Db_NoRecordExists, which can be used in elements of form decorator. but in above scenario how we can create class so we can validate the data (in multiple columns) before insertion.

I have create this class in php and used many years. Now when I am working in zend so I am looking for best solutions so that i can create these components to use in my projects.

Thanks for your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T20:01:55+00:00Added an answer on May 20, 2026 at 8:01 pm

    I did something like this using doctrine.

    class mylib_Validate_isRecordExist
    {
    
        public function isRecordExist($modelClass, $column = array()){
    
            if(empty($modelClass) || empty($column)){
               return true;
            }
    
            foreach ($column as $k=>$v){
                $where .= ((empty($where))? "" : " AND ") . $k . " = '" . $v . "'";
            }
    
           $q = Doctrine_Query::create()
                ->select('t.*')
                ->from($modelClass . ' t')
                ->where($where);
           $records =  $q->execute()->count();
           return ($records==0) ? false : true;
    
        }
    }
    

    and then access it using

    $isRecordExist = mylib_Validate_isRecordExist::isRecordExist(
                                'campaignManagement_Model_registrant',
                                array('email'=>'test@test', 'postcode'=>'abcdddd')
                                );
    

    I am sure there must be better way to integrate this in zend. but Don’t know that could be…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some kind of test data and want to create a unit test
Data table structure is: id1,id2,id3,id4,... (some other fields). I want to create summary query
I want to create some text in a canvas: myText = self.canvas.create_text(5, 5, anchor=NW,
I want to create some up and down buttons using the standard button background
I want to create an ini file to store some settings for my application.
I want to create an NSOutlineView subclass where some of the entries look like
I want to create a simple http proxy server that does some very basic
I want to create a folder inside a C# project to contain some configuration
What is the easiest way to create some kind of test harness for Android
If I want to create .NET app that needs database functionalities, but I do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.