Jump to content

Cum Sa Incep Pentru A Invata Sql, Java Si C++?


Recommended Posts

Posted

Buna, sunt un nou membru pe acest forum si am intrat in cautarea unui raspuns. Intrebarea este ce programe e nevoie de a cunoaste pt a invata SQL, Java si C++ ? Am nevoie urgent de un raspuns deoarece am nevoie de a invata aceste trei programe.Mentionez ca am inceput de 1 saptamana sa lucrez in HTML. Multumesc anticipat pt un raspuns.

  • Moderators
Posted

Trebuie sa inveti cu basicu, string, arrays, loop-uri, variabile, ce este/inseamna o clasa sau un obiect, etc. Asta cat despre Java, posibil ( nu stiu cum este c++ ) ca limbaju intre cele trei sa fie asemanator in mare parte, ce-l putin partea basica.

 

In ziua de azi exista multe siteuri cu tutoriale sau explicatii, problema se aduna daca intelegi sau nu engleza. In romana nu stiu nici-un site bunicel care sa poti invata.

Java ofera un fel de tutoriale pe siteul oficial:

The Java™ Tutorials

 

Alt site care poate te ajuta cu mai multe limbaje, nu doar java:

Tutorialspoint

PHP Developer - Not available for freelancing right now

Daca ai de gand sa postezi la categoria IPB, nu uita sa citesti regulamentul: Link regulament

Posted

#Republic: sql e php? Ha? N-au legatura :)) Ce-i drept, nu prea am inteles ce vrei sa zici acolo.

 

Eu asa le consider. In mare parte se aseamana.

Cum arata un cod php

if( !$this->settings['ipb_reg_number'] )
{
                                $this->lang->words['license_missing_info']              = sprintf( $this->lang->words['license_missing_info'], $this->settings['base_url'] . 'app=core&module=tools&section=licensekey' );
                                $extra_class = 'force_license';
                                $license_html = <<<HTML
                                                                <div id='license_notice_force'>
                                                                                                <h4>{$this->lang->words['license_missing_header']}</h4>
                                                                                                <p>{$this->lang->words['license_missing_info']}</p>
                                                                </div>
HTML;
}
else
{
                                $licenseData    = $this->cache->getCache( 'licenseData' );
                                if( ( !$licenseData OR !$licenseData['key']['_expires'] OR $licenseData['key']['_expires'] < IPS_UNIX_TIME_NOW and $licenseData['key']['_expires'] != -1 ) AND !IPSCookie::get( 'ignore-license-notice' ) )
                                {
                                                                $extra_class = 'expired_license';
                                                                $license_html = <<<HTML
                                                                                                <div id='license_notice_expired'>
                                                                                                                                <div class='right'><a id='license-close' href='#'>Close</a></div>
                                                                                                                                <h4>{$this->lang->words['license_expired_header']}</h4>
                                                                                                                                <p>{$this->lang->words['license_expired_info']}</p>
                                                                                                </div>
HTML;
                                }
}

 

Si cum arata unul sql

#include<stdio.h>
#include<string.h>
EXEC SQL BEGIN DECLARE SECTION;

long station_id;
long mon;
float temp;
float rain;
char city_name[21];
long SQLCODE;

EXEC SQL END DECLARE SECTION;
main()
{
/* the CONNECT statement, if needed, goes here */
strcpy(city_name,"Denver");
EXEC SQL SELECT ID INTO :station_id

FROM STATION
WHERE CITY = :city_name;

if (SQLCODE == 100)

{
printf("There is no station for city %sn",city_name);
exit(0);
}

printf("For the city %s, Station ID is %ldn",city_name,station_id); 
printf("And here is the weather data:n");
EXEC SQL DECLARE XYZ CURSOR FOR

SELECT MONTH, TEMP_F, RAIN_I
FROM STATS
WHERE ID = :station_id
ORDER BY MONTH;

EXEC SQL OPEN XYZ;
while (SQLCODE != 100) {

EXEC SQL FETCH XYZ INTO :mon, :temp, :rain;
if (SQLCODE == 100)

printf("end of listn");

else

printf("month = %ld, temperature = %f, rainfall = %fn",mon,temp,rain);

}

EXEC SQL CLOSE XYZ;
exit(0);
}

 

Eu zic ca unele chiar se leaga intre ele. Opinia mea.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.