Questions tagged [backand]

Backand is a backend-as-a-service for AngularJS that provides social login, push notifications, and Ionic integration.

Backand is a Backend-as-a-Service provider focused on AngularJS Applications built on top of relational databases. Backand provides all of the features necessary for a fully functional, secure, and scalable web app, including user and role-based security, automated RESTful-based APIs, custom action triggers, portable Amazon RDS database instances, social media integration, and extensive support for server-side JavaScript code..

Details:

Backand is a Backend-as-a-Service for AngularJS applications. Starting from either an existing database or a schema specification, Backand quickly generates a RESTful API that can be hit from any application using JSON web requests. Backand also provides a library for AngularJS, allowing you to quickly tie Backand's RESTful API to your application's data services, giving you instant database backing. In addition to object management, Backand provides you with a number of features crucial to web-based applications. These includes:

  • User and Role-based Security
  • Dedicated Hosting
  • Custom server-side actions
  • Transaction-level database-triggered actions
  • Integration with Ionic for cross-platform apps
  • Server-side JavaScript execution, allowing for safe and secure third-party integration
  • A portable database, allowing you to quickly change providers
  • Real-time database communication, and web sockets
  • Scalability, both in terms of performance and data management.

To get started, sign up at Backand.com and register your application! The application dashboard contains extensive documentation on every feature available to your app. Backand also maintains an active GitHub page at https://www.github.com/backand, where you can find several tutorials and examples of how to leverage Backand as a tool to accelerate your app's development.

Links:

143 questions
5
votes
1 answer

Python: df.to_sql with OperationalError 1046, 'No database selected and OperationalError 2005, "Unknown MySQL server hos

I want to change to another MySQL database (from backand) from my current one. So, I suppose it is about the way I set the database settings. engine = create_engine('mysql+mysqldb://user:pw@backands146367311ktcttuv7') df_2.to_sql(name='KLSE',…
vindex
  • 331
  • 6
  • 17
5
votes
1 answer

way to model a one-to-one relationship in schema?

For example I have a table of cars, each has a model and a make. A car can only have one of each, and there is a table of models and makes, with their ids auto-generated. Can I reference these in my cars table? What would the JSON look like? I…
montrealist
  • 5,593
  • 12
  • 46
  • 68
5
votes
1 answer

Custom Directive calling $scope function causes $rootScope:infdig

I have tried looking around at other $rootScope:infdig questions here and couldn't find one that really explained it to me well, or that I understood. Same with the AngularJs docs. I hope someone can help. I have function that I made on the $scope…
4
votes
1 answer

Backand.signup() - "Create My App User" failed to perform

I'm trying to register a new user using: Backand.signup(firstName, lastName, username, password, password2); but I end up getting: POST https://api.backand.com/1/user/signup 504 (GATEWAY_TIMEOUT) When I check the logs (Log > Server Side…
cs_pupil
  • 2,782
  • 27
  • 39
3
votes
2 answers

Run Time Error: cannot find module "ionic-native"

I'm trying to connect ionic 2 app to backand and getting this run time error: Cannot find module "ionic-native". I have tried running npm install @ionic-native/core --save – but does not help. Many thanks Set Up Details Are Here: Ionic Framework:…
3
votes
0 answers

Back&: Compute Units

I'm working with the Backand with an Ionic mobile app that I'm developing. It's a data intensive app so I'm wanting to make sure doing my interactions most efficiently. Is there some parameters documented somewhere that tells me what are better…
CourtneyR
  • 93
  • 8
3
votes
3 answers

How to add id of an object in another object with AngularJS

I have two objects, Events & Comments: { "name": "events", "fields": { "name": { "type": "string" }, "date": { "type": "datetime" }, "time": { "type": "datetime" }, "info":…
user2133623
3
votes
1 answer

MySQL Insert query failing

I'm using backand.com to make a query that attempts to create a record in a users table if the email isn't already used: INSERT INTO users (email, firstName, lastName, password) SELECT * FROM (SELECT '{{email}}', 'test', 'person', '{{password}}') AS…
Dave
  • 5,283
  • 7
  • 44
  • 66
3
votes
1 answer

Replicating a Backand instance automatically/using a script

I'm using Backand as the api between my frontend and my externally hosted MySQL database. This is a college project, and one of the requirements is to submit my project/code where my project must be deploy-able on the examiners server, from…
Alan
  • 1,510
  • 1
  • 18
  • 35
2
votes
1 answer

Exporting a table from a Backand app and importing it into another Backand app

So here is my scenario: I have two apps in Backand: stagingApp and myApp. stagingApp has all the data, configurations and the model of our app. myApp is just an app I created for testing things without having to affect the model or data from…
bolivar
  • 70
  • 4
2
votes
1 answer

Archive Master detail concept with different http requests ionic

How can i archive a master detail concept with different http requests? I have a category list which has one or more children. Then i have a detail-view which should show only the content from the table which is related the parent element. What i…
olivier
  • 2,585
  • 6
  • 34
  • 61
2
votes
1 answer

How to create a Security Action that sends an email to the Admin with Backand?

How can I create an Action that will send an email to the Admin users when the user hits a specific button?
user2133623
2
votes
1 answer

Backand deep querying

I want to know if it is possible to retrieve and the collection of objects that an object holds in Backand. For example - you have an object 'Trip' which has a one-to-many relationship with 'Destination' as a trip can have many destinations. The…
Vince
  • 691
  • 1
  • 8
  • 18
2
votes
1 answer

Backand Error: "Can only invoke functions" when trying to add User?

I'm trying to add a User but I keep getting this error: "An unexpected signup exception occured The following action: "Create My App User" failed to perform: Can only invoke functions Can only invoke functions Can only invoke functions" Not sure…
user2133623
2
votes
2 answers

How do I store images with Backand and Ionic?

How exactly do I go about storing profile images for in the Users object?
user2133623
1
2 3
9 10