Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 4 of 4 total
Thread database not found
Fri, Apr 15 2011 8:40 PMPermanent Link

Pedro Duarte

I have just installed the trial extension on my webserver (windows) is just for testing, and so far so good, its working


what is not working is the damn configurations,

this is the situation, i have a software that gave my a serious of export files (*.dat;*.idx; example: turmaprp.dat and turmaprp.idx) and all the files it export are pass protected, pass that they gave me, i can see the content of the files using a DBISAM viewer

my problem is when execute the script it gave me "Could not connect: The database Turmaprp.dat does not exist"

my connect string is
$c_string="type=local;configpath=E:\\xampp\\htdocs\\portal\\jpm;uid=Administrator;pwd=EDBDefault;database=turmaprp"; //turmaprp.dat

i tryied with .dat .idx without and the same

i tried with fullpath in the indication of the database and nothing

and with type=local and remote
Sat, Apr 16 2011 6:20 AMPermanent Link

Fernando Dias

Team Elevate Team Elevate

Pedro,

The User and Password you are using are not the default DBISAM login bur the default EDB login.
The default DBISAM login is:
User ID: Admin (case-insensitive)
Password: DBAdmin (case-sensitive)  

--
Fernando Dias
[Team Elevate]
Sat, Apr 16 2011 11:13 AMPermanent Link

Pedro Duarte

Fernando Dias wrote:

Pedro,

The User and Password you are using are not the default DBISAM login bur the default EDB login.
The default DBISAM login is:
User ID: Admin (case-insensitive)
Password: DBAdmin (case-sensitive)  

--
Fernando Dias
[Team Elevate]

         $base_de_dados="Turmaprp";
         $path_config="E:\\xampp\\htdocs\\portal\\jpm\\";
         $path_db="E:\\xampp\\htdocs\\portal\\jpm\\";
         //$path_db="E:\\xampp\\htdocs\\portal\\jpm";
         //$pwd="EDBDefault";
         //$uid="Administrator";
         $pwd="DBAdmin";
         $uid="Admin";
                                                                          
         $c_string="type=local;configpath=$path_config;uid=$uid;pwd=$pwd;database=$base_de_dados";


Output :S
echo extensão carregada
Could not connect: (501) Login failed (The user name or password is incorrect)
Sat, Apr 16 2011 12:02 PMPermanent Link

Fernando Dias

Team Elevate Team Elevate

Pedro,

I'm confused...
Your connection string looks like an EDB connection string, and the error 501 is an EDB error message, but you said you were trying to connect to a DBISAM database and you are posting in a DBISAM group ... Its a bit messy Smiley

After all, what product are you using and what version?
Is it DBISAM ODBC driver, EDB ODBC driver or EDB PHP driver?
And to connect to what? A local database or a DBISAM (or EDB) server ?

--
Fernando Dias
[Team Elevate]
Image