oydadb 1.0.8 copy "oydadb: ^1.0.8" to clipboard
oydadb: ^1.0.8 copied to clipboard

database interface for oyda applications.

oydadb #

The oydadb package a powerful tool that simplifies interactions with PostgreSQL databases in Flutter applications. It encapsulates all necessary database operations within the OYDAInterface class, making it easier to perform CRUD operations.

Getting Started #

First, don't use this package yet, it's not ready

Then, add the oydadb package to your pubspec.yaml file:

dependencies:
  oydadb: ^1.0.0

Then, run flutter pub get to fetch the package.

Usage #

Import the package in your Dart file:

import 'package:oydadb/oydadb.dart';

Now, you can use the oydaInterface instance to interact with your PostgreSQL database. For example, to select an existing table a table:

  await dotenv.load(fileName: ".env");
  var table = await OydaInterface().selectTable('test');
  print(table);
1
likes
120
points
117
downloads

Publisher

unverified uploader

Weekly Downloads

database interface for oyda applications.

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

dotenv, flutter, flutter_dotenv, http, postgres

More

Packages that depend on oydadb