Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7729507
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T05:59:06+00:00 2026-06-01T05:59:06+00:00

So i got a class like this: class Db { protected static $dbh =

  • 0

So i got a class like this:

class Db {
    protected static $dbh = false;

    function connect(){
        try {
        self::$dbh = new PDO("sqlite:./test.db");
        self::$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
        self::$dbh->exec("CREATE TABLE IF NOT EXISTS news (id INTEGER PRIMARY KEY AUTOINCREMENT, tytul TEXT, tresc TEXT, data DATE, wazne TINYINT(1))");
        } catch (PDOException $e) {
            echo $e->getMessage();
        }

    }
}

There is more to it like fetch functions etc. I have this class stored like this:

|otherfile.php
|admin
  |inc/db.inc
  |somefile.php

So my problem is when i require(‘db.inc’); from within somefile.php and use the class it creates a new test.db in folder “admin”. But when i require it in file “otherfile.php” and use the class it creates a seperate test.db file in the same folder as “otherfile.php”. How can i force it to use one file, while still using a relative path to the db?

edit:
Personally i think this would work the best:

function connect(){
    try {
    $dir = __DIR__.'/test.db';
    self::$dbh = new PDO("sqlite:".$dir);
    self::$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    self::$dbh->exec("CREATE TABLE IF NOT EXISTS news (id INTEGER PRIMARY KEY AUTOINCREMENT, tytul TEXT, tresc TEXT, data DATE, wazne TINYINT(1))");
    } catch (PDOException $e) {
        echo $e->getMessage();
    }

}

This does work locally with my xampp setup, but doesn’t work on a remote server sadly.

edit: Finally figured it out, see answer.

Thanks for the answers anyway 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T05:59:08+00:00Added an answer on June 1, 2026 at 5:59 am

    You can pass a path to your connection function

    function connect($path_to_sql_db) {
      try {
        self::$dbh = new PDO("sqlite:"+$path_to_sql_db);
        self::$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
        self::$dbh->exec("CREATE TABLE IF NOT EXISTS news (id INTEGER PRIMARY KEY AUTOINCREMENT, tytul TEXT, tresc TEXT, data DATE, wazne TINYINT(1))");
        } catch (PDOException $e) {
            echo $e->getMessage();
        }
    
    
    }
    

    Since your files are in different places the same relative path will not work, as you are observing.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got a view model like this: public class BaseViewModelTech : INotifyPropertyChanged { static
Say I've got a class like this: class Test { int x; SomeClass s;
I've got a class like this: [XmlRoot(channel)] public class Channel { [XmlElement(title)] public String
I've got a class somewhat like this: public class Test { private final List<ISomeType>
I've got a class that looks something like this: public class Parent { public
I got a scenario like this Class Parent { Property A; } Class A
I've got some generic class for my JPA model POJO that goes like this:
I've got a set of models that look like this: class Page(models.Model): title =
I got a ASP.NET MVC controller like this [Authorize] public class ObjectController : Controller
I've got a simple java class that looks something like this: public class Skin

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.