Jump to content

Problema la mysql


Lally

Recommended Posts

Am bagat eu acol odar vad ca nu mere am bagat baza de date in phpMyAdmin am creat baza am bagat toate de mai jos dar vad ca nu merge imi puteti sa imi spuneti mai exact ce puc si unde.

P.S daca vrei sa imi zici ca nu stiu nimic etc.. nu mai posta pentru ca am incercat deci nu poti zice ca nu stiu dar nu merge.

local hostname = get( "hostname" ) or ""

local username = get( "username" ) or ""

local password = get( "password" ) or ""

local database = get( "database" ) or ""

local port = tonumber( get( "port" ) ) or 3306

Link to comment
  • 10 months later...

de exemplu contul tău de Mysql este Alex şi parola 123456, si baza de date se cheamă server atunci:

local hostname = get( "hostname" ) or "localhost" 
local username = get( "username" ) or "Alex" 
local password = get( "password" ) or "123456" 
local database = get( "database" ) or "server" 
local port = tonumber( get( "port" ) ) or 3306 

sau în caz că nu ai cont, numești fișierul .sql "server" apoi:

local hostname = get( "hostname" ) or "localhost" 
local username = get( "username" ) or "root" 
local password = get( "password" ) or "" 
local database = get( "database" ) or "server" 
local port = tonumber( get( "port" ) ) or 3306 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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