How to access wordpress database? [closed] - database

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I do have the access for the ftp account for this wordpress website and I need to access to its database.
Where can I find it? It doesn't have a cpanel cause when I try to access www.sampleURL.com/cpanel it shows:
Not Found The requested URL /cpanel was not found on this server.
Is there any other way?

You can use one of phpmyadmin-like tools out there. You can get the login data by editing wp-config.php file from your wp root.

Well, you'd connect with the mysql client typically... you won't find the database with an FTP client.

Related

what is p6spy? I am getting this in the db url [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
What is difference between jdbc:p6spy:postgresql://localhost:5432/{some DB} and jdbc:postgresql://localhost:5432/{some DB}.
I set a PostgreSQL DB and DB URL was like jdbc:postgresql://localhost:5432/{some DB} while in my properties file i got the URL as jdbc:p6spy:postgresql://localhost:5432/{some DB}.
Can anyone help me to resolve this and enhance my understanding of the above?
P6Spy is a framework that enables database data to be seamlessly intercepted and logged with no code changes to existing application. The P6Spy distribution includes P6Log, an application which logs all JDBC transactions for any Java application.
https://github.com/p6spy/p6spy

Online DB on windows phone 8 [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm want to save some datas on an online db. How can I connect to an online database (SQLSERVER) on windows phone 8 ?
Thank you.
Dont connect directly to a database from a mobile phone. Use webservices either SOAP or REST. You are opening a can of worms by exposing your database directly to the internet.
Also if you want to expand and include other phones i.e. iPhone and Android to your database then you are going to have lots of different code to maintain.
See this answer Android access to remote SQL database for more information about this.

Insert User in localhost in PostgreSQL [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I am creating databases in MySQL and PostgreSQL. When I am going to create a user that only can work in localhost (like MySQL with: create user 'X'#'localhost'), I can't do it. Is there any way to create the equivalent?
look for pg_hba.conf file - you can define user access there
http://www.postgresql.org/docs/9.1/static/auth-pg-hba-conf.html

How to do practice SQL statements online instead of on my computer? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I don't want to install 3-4 databases on my computer. I had seen a website where i could make a database on a website, store it on the website itself and run SQL queries against it. I forgot the name of that site.
Now, I am looking for a website which allows me to do all this. Can you suggest some websites that can do this ?
Thank you.
Practice here... http://www.sql-ex.ru/

Send mysql dump to amazon S3 [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I want to do a simple full backup of my mysql database to S3 once or twice a day. So I can execute mysqldump in a cron task. What's the easiest way to send that dump to amazon S3?
Check out this one: http://s3tools.org/s3cmd
If you are on Linux, it is probably included in your distribution.
Depends your OS.
I think use SSH (Winscp/scp) it's a good idea.

Resources