All Projects → virajkadam → php-search-all-database

virajkadam / php-search-all-database

Licence: other
With this code, you can search all database with narrowing down the Tables & Column to search in, Resulting in low traversing & high performance

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to php-search-all-database

ercole-agent
Proactive Software Asset Management. Agent component
Stars: ✭ 24 (+14.29%)
Mutual labels:  mysql-database
mySequelWeb
MySequel Web is an open source web based GUI tool to access your MySql database. It is similar to PHP My Admin of WAMP. Here you can access any MySQL database with proper connection strings. We do not save or store any of your connection strings or data. Every thing related to your connection strings are volatile. You can host this as a simple n…
Stars: ✭ 26 (+23.81%)
Mutual labels:  mysql-database
JPQ
CIKM'21: JPQ substantially improves the efficiency of Dense Retrieval with 30x compression ratio, 10x CPU speedup and 2x GPU speedup.
Stars: ✭ 39 (+85.71%)
Mutual labels:  efficiency
node-mysql
Node with mysql boilerplate
Stars: ✭ 72 (+242.86%)
Mutual labels:  mysql-database
Database-Naming-Convention
Database Naming Conventions & Best Practices
Stars: ✭ 76 (+261.9%)
Mutual labels:  mysql-database
book-note
📖 book note,读书笔记
Stars: ✭ 21 (+0%)
Mutual labels:  mysql-database
neural-ranking-kd
Improving Efficient Neural Ranking Models with Cross-Architecture Knowledge Distillation
Stars: ✭ 74 (+252.38%)
Mutual labels:  efficiency
creek
使用Spring Security + JWT Token + RBAC的方式实现认证和授权,持久层使用Mybatis plus。避免每次重复编写认证和授权功能、角色管理、异常处理、参数校验等代码,直接上手业务代码,不再烦恼于构建项目与风格统一。
Stars: ✭ 21 (+0%)
Mutual labels:  mysql-database
desktop-application
Electron-based desktop time tracker for Cattr
Stars: ✭ 38 (+80.95%)
Mutual labels:  efficiency
File-Engine
An app launcher && efficiency tool
Stars: ✭ 89 (+323.81%)
Mutual labels:  efficiency
fp256
An efficient library for 256 bit integer arithmetic
Stars: ✭ 21 (+0%)
Mutual labels:  efficiency
opsani-ignite
Evaluate and improve the reliability, performance and efficiency of your Kubernetes applications.
Stars: ✭ 17 (-19.05%)
Mutual labels:  efficiency
SimpleReminder
Efficient creation of simple reminders on Android.
Stars: ✭ 28 (+33.33%)
Mutual labels:  efficiency
Launcher
🚀 A distraction-free minimal homescreen for Android.
Stars: ✭ 116 (+452.38%)
Mutual labels:  efficiency
CNeptune
CNeptune improve productivity & efficiency by urbanize .net module with meta-code to lay foundation for frameworks
Stars: ✭ 30 (+42.86%)
Mutual labels:  efficiency
drift-server
Drift server
Stars: ✭ 19 (-9.52%)
Mutual labels:  mysql-database
node-typescript-starter
REST API using Node with typescript, KOA framework. TypeORM for SQL. Middlewares JWT (auth), CORS, Winston Logger, Error, Response
Stars: ✭ 19 (-9.52%)
Mutual labels:  mysql-database
ostrio-analytics
📊 Visitor's analytics tracking code for ostr.io service
Stars: ✭ 14 (-33.33%)
Mutual labels:  efficiency
Musical-World
DBMS Mini Project that basically designed for online music player
Stars: ✭ 59 (+180.95%)
Mutual labels:  mysql-database
FlashRoute
🚀 Takes minutes to explore the topology of all routable /24 prefixes in IPv4 address space. Now supports IPv6 scan!
Stars: ✭ 26 (+23.81%)
Mutual labels:  efficiency

PHP Search All Database

With this code, you can search entire database, by narrowing down the tables & column to search in. Giving the flexibility to developer and efficiency to execute faster searches by lowering down the traversing nodes.

  • Sample, Easy & Efficient searching.
  • User friendly - pass parameters and get started
  • Usage

    How to use:

    Assign keyword to search to varible $search_keyword

    $search_keyword = "keyword";                            // search Keyword

    Enter table names & their repective column names in an associative array $table_ass_array to search the given keyword.

    $table_ass_array = array( 
    			'TABLE NAME 1' => array( 			// TABLENAME 1 to search in
    						'COLUMNNAME_A',			// Column Name A to search in
    						'COLUMNNAME_B'			// Column Name B to search in
    						),
    			'TABLE NAME 2' => array(			// TABLENAME 2 to search in
    						'COLUMNNAME_A',			// Column Name A to search in
    						'COLUMNNAME_B'			// Column Name B to search in
    						)
    			);

    Call this awesome function php_search_all_database("Keyword to search", "Table name array") as below

    php_search_all_database($search_keyword, $table_ass_array);       // call this Awesomme function
    Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].