Showing entries 7743 to 7752 of 44061
« 10 Newer Entries | 10 Older Entries »
Ubuntu 16.04 LAMP server tutorial with Apache 2.4, PHP 7 and MariaDB (instead of MySQL)

LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache 2.4 web server on an Ubuntu 16.04 (Xenial Xerus) server with PHP 7 support (mod_php) and MySQL / MariaDB. Additionally, I will install PHPMyAdmin to make MySQL administration easier. A LAMP setup is the perfect basis for CMS systems like Joomla, Wordpress or Drupal.

ColumnStore Architecture & Use-case

Mon, 2016-05-02 12:08Nishant Vyas

In the previous blog, I've talked about, Why is ColumnStore important?. Let's look at MariaDB ColumnStore architecture and use-cases.

MariaDB ColumnStore is built on a three-tier scalable architecture that supports the kind of growth that MariaDB users have grown accustomed to. Queries are processed by user modules, which assign tasks to parallel performance modules that access the columnar distributed storage layer below. Performance modules scale almost infinitely, providing both performance and capacity growth as you add servers. These modules don’t process queries; they just take instructions from the user modules, which organize and deliver the results.

At the very high-level, when a query arrives at MariaDB Database Server; It gets the data from storage engine, applies projection, filtering, sorting, …

[Read more]
How to Execute mysql Query in Laravel

Sometimes we require to run directly mysql query on Laravel for example if you need to copy one table to other table using mysql query I also need in one project and thats why i am fetching problem But you can use sql query on laravel using db statement in bellow example you can learn how to run

How to Execute mysql Query in Laravel

Sometimes we require to run directly mysql query on Laravel for example if you need to copy one table to other table using mysql query I also need in one project and thats why i am fetching problem But you can use sql query on laravel using db statement in bellow example you can learn how to run

Laravel 52 multi auth example using Auth guard from scratch

Multiple authentication is very important in big application of laravel If you work on large project then you mostly prefer to diferente tables like you always prefer users table for site user registration and admins table for admin user that way make strong security we always use Auth for ma

MariaDB 10.0.25 now available

The MariaDB project is pleased to announce the immediate availability of MariaDB 10.0.25. See the release notes and changelog for details on this release. Download MariaDB 10.0.25 Release Notes Changelog What is MariaDB 10.0? MariaDB APT and YUM Repository Configuration Generator Thanks, and enjoy MariaDB!

The post MariaDB 10.0.25 now available appeared first on MariaDB.org.

How to select concat columns with Laravel Query Builder

We are always wanted to use sql query for concatenate fullname or something to concat using mysql concat function now if you think how to use concat function in laravel query builder then this post can help you So if you need to use concat mysql function then see bellow examplestrongExample

Laravel Inner Join with Multiple Conditions Example using Query Builder

In this post you can learn how to add multiple condition in join query of Laravel Eloquent if you use data relationship then you dont need to use but if you need to get manually join with two or more condition then it can help in this example i also add how to add simple inner join in laravel and

How to select concat columns with Laravel Query Builder

We are always wanted to use sql query for concatenate fullname or something to concat using mysql concat function now if you think how to use concat function in laravel query builder then this post can help you So if you need to use concat mysql function then see bellow examplestrongExample

Being Naive About Folder Paths

Recently I worked on a feature that involved displaying a list of Folders using an auto-complete field. A simple enough task, but one that had a bit of complexity behind it. For starters, each organization in our system has their own "folder hierarchy", or a tree structure of folders, that could be one to many layers deep. The second thing being that the UI we wanted -- auto-complete -- meant that we would need to "search" through the folders to find a match (based on the user's input) as well as display the path information (where the folder lives) so that the user can differentiate folders if they happen to have the same or similar name. Since it was auto-complete, the searching also needed to be fast or else the user experience would be annoying.

The folder tree structure was stored in a MySQL DB table in a very typical self-referencing schema that represented hierarchical data. Each row of data could have a column that referenced the …

[Read more]
Showing entries 7743 to 7752 of 44061
« 10 Newer Entries | 10 Older Entries »