Public and private

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Senior, Medior and Junior SAP HANA Developer

Vacature details Vakgebied: Software/IT Opleiding: Medior Werklocatie: Veldhoven Vacature ID: 12696 Introductie Our client is the world's leading provider of lithography systems for the semiconductor industry, manufacturing complex machines that are critical to the production of integrated circuits or chips. Our purpose is “unlocking the potential of people and society by pushing technology to new limits”. We do this guided by the principles “Challenge”, “Collaborate” and “Care”. Wat verwachten we van jou? SAP Certified Application Associate - SAP HANA Cloud Modeling (training and/or certification) Bachelor degree or higher Excellent understanding of SAP HANA (2.0 / Cloud), Data Modelling and writing

Bekijk vacature »

Beezz

Beezz

10/01/2009 12:56:00
Quote Anchor link
dag mensen,

Kan iemand mij uitleggen wat public en private zijn in bijvoorbeeld een database connector.....

Voorbeeld:

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
class mysqlconnector{
    
    private $connection_identifier;
    private $active_database;
    private $query_result;
    public $time;
    private $query;
    public $total_queries;
    public $total_time;
    
    public function __construct( )
    {

        GLOBAL $config;
        if( $config[ 'mysql_use_persistent' ] == true )
        {

            if( ! $this->connection_identifier = mysql_pconnect( $config[ 'mysql_server' ] , $config[ 'mysql_user' ] , $config[ 'mysql_password' ] ) )
            {

                trigger_error( ERROR_CONNECTION_FAILED . ( $config[ 'mysql_display_errors' ] == true ) ? mysql_errno( ) . ': ' . mysql_error( ) : '' );
            }
        }

        else
        {
            if( ! $this->connection_identifier = mysql_connect( $config[ 'mysql_server' ] , $config[ 'mysql_user' ] , $config[ 'mysql_password' ] ) )
            {

                trigger_error( ERROR_CONNECTION_FAILED . ( $config[ 'mysql_mysql_errors' ] == true ) ? mysql_errno( ) . ': ' . mysql_error( ) : '' );
            }
        }
    }


?>
Gewijzigd op 01/01/1970 01:00:00 door Beezz
 
PHP hulp

PHP hulp

28/03/2024 12:47:05
 
Frank -

Frank -

10/01/2009 13:03:00
Quote Anchor link
Zie de handleiding, staat het haarfijn in uitgelegd. Het bepaalt wie nu welke variabelen en functies mogen gebruiken.
 
Beezz

Beezz

10/01/2009 13:05:00
Quote Anchor link
Daar had ik zo'n vermoeden van...

Ik ga die handleiding maar even doorlezen......


Bedankt...
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.