deno_postgres_interop 0.0.4 copy "deno_postgres_interop: ^0.0.4" to clipboard
deno_postgres_interop: ^0.0.4 copied to clipboard

Platformweb

An interop for js package deno-postgres - PostgreSQL driver that can be used in deno-deploy (supabase edge functions).

example/lib/main.dart

import 'package:deno_postgres_interop/deno_postgres_interop.dart';
import 'package:supabase_functions/supabase_functions.dart';

void main() => SupabaseFunctions(fetch: fetch);

Future<Response> fetch(Request _) async {
  final dbUrl = Deno.env.get('SUPABASE_DB_URL');
  if (dbUrl == null) return Response.error();

  final client = Client(dbUrl);
  await client.connect();
  try {
    final result = await client.transaction(
      'transaction',
      transaction,
      TransactionOptions(isolationLevel: IsolationLevel.serializable),
    );
    await client.end();

    return Response(
      [
        result.command == CommandType.select,
        'warnings = ${result.warnings}',
        '''
rowDescription =
  columnCount = ${result.rowDescription?.columnCount}
  columns =
${result.rowDescription?.columns.map((e) => '    name = ${e.name}').join('\n')}
      ''',
        result.query.resultType,
        ...result.rows.map(rowToPrettyString),
      ].join('\n\n'),
    );
  } on TransactionError catch (e) {
    await client.end();

    return Response('''
${e.name}
${e.cause}
  ${e.cause.name}
  ${e.cause.cause}
  ${e.cause.message}
  ${e.cause.fields}
${e.message}
$e
''');
  }
}

Future<QueryObjectResult<dynamic>> transaction(Transaction transaction) async {
  await transaction.queryObject(
    'UPDATE public."User" '
    r'SET username=$1 '
    "WHERE last_name='user'"
    'AND y = z',
    ["'user${transaction.hashCode}'"],
  );
  await Future.delayed(const Duration(seconds: 10));

  return transaction.queryObject('SELECT * FROM public."User"');
}

String rowToPrettyString(Map<String, dynamic> row) => row
    .toString()
    .replaceAll(', ', '\n')
    .replaceAllMapped(RegExp(r'\{|\}'), (_) => '');
10
likes
140
pub points
65%
popularity

Publisher

verified publishersolid.software

An interop for js package deno-postgres - PostgreSQL driver that can be used in deno-deploy (supabase edge functions).

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

args, collection, yaml

More

Packages that depend on deno_postgres_interop