[B4X] Supabase - The Open Source Firebase alternative
Supabase is an open source Firebase alternative. It provides all the backend services you need to build a product. Supabase uses Postgres database with real-time capabilities. Basically, supabase provides an interface to manage postgres database that you can use to create table and insert, edit...
www.b4x.com
You can use column aliases in Supabase. All you need to do is write the alias name, a colon and then the column name.
B4X:
'AliasName:ColumnName
Query.Columns("Name:Tasks_Name")
B4X:
Dim Query As Supabase_DatabaseSelect = xSupabase.Database.SelectData
Query.Columns("*,Name:Tasks_Name").From("dt_Tasks")
Query.Filter_Equal(CreateMap("Tasks_Name":"Task 02"))
Wait For (Query.Execute) Complete (DatabaseResult As SupabaseDatabaseResult)