I am using Telerik Platform Kendo Mobile to build mobile app ,I am using cordova camera and gallery plugin to catpure the profile picture, this picture converted into Base64,Now my question is this best way to store Base64 data in database or is there any alternative way to store Profile Picture/Images for Mobile application, and i want to make popup also when user click on Profile Pic
Storing profile image in Base64 format in database for Hybrid Mobile Application
96 Views Asked by adikitty CB At
1
There are 1 best solutions below
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in TELERIK
- Telerik Blazor GridCommandButton not working
- How to Nest a TelerikGrid inside TelerikForm with Blazor
- Why doesn't the ImageButton work for me? Grid IOS Telerik
- Telerik Blazor Wizard Doesn't Re-Render on Previous Button Click
- How to increase information in SQL Server's logs?
- error NU1101: Unable to find package Telerik.Drawing.Skia.Trial. No packages exist with this id in source(s)
- Issue with RadPane content Freezing After Resetting Layout on Floating State
- How can i make a multi-level hierarchical radgridview with load-on-demand in Telerik for Winforms?
- How to show data of child view model by targeting parent view model in Kendo Multiselect dropdown in MVC?
- Telerik-RadRadioButtonlist control is not loading
- How to set the spacing between RadSplitContainers in the RadDocking?
- Adjusting Telerik RadComboBox dropdown width dynamically based on content
- Duplicate subNodes Telerik c#
- WindowsAzure.Storage package on telerik RadCloudUpload
- Blazor TelerikAutoComplete in each list item
Related Questions in PHONEGAP-PLUGINS
- identify GPS mobile phonegap
- Check Phonegap app connection
- Phonegap notification.alert works only in Android
- How do i send a SMS using phonegap without opening the native app?
- How to Create cordova hybrid Android, ios apps through terminal by using ember.js framework?
- login with Fb and Google using Ionic
- Change application direction using Phonegap or SAPUI5
- Ionic Not Displaying Header or Scroll
- How to create a plugin to take signal strength in phonegap
- Phonegap app.initialize() only called when 1st run after install
- Cordova build : Error :Failed to run "java -version "
- how to handle the application on outgoing and incoming calls in ios phone phonegap programming?
- phonegap media plugin cant handle multiple sounds?
- How can I pass back the purchase receipt to the JavaScript using Cordova WP8?
- Upgrade cordova: cannot install plugins from git urls anymore
Related Questions in CORDOVA-PLUGINS
- cordova-background-geolocation-plugin don't giving any response in cordova android app
- Failed imports in ionic plugin
- android.content.ActivityNotFoundException: No Activity found to handle null
- httpd plugin in ionic capacitorJS
- Connecting Custom Cordova Plugin in Native vue app
- processReleaseMainManifest FAILED when build in cordova 12.0.0
- After installing cordova-plugin-screen-orientation npx cap sync does not work anymore
- download PDF file from external website with inappbrowser ionic cordova
- From @awesome-cordova-plugins/in-app-browser not able to download PDF in Ionic Cordova Applications
- Using NFC scanning functionality in React apps with Capacitor
- How to disable log output in Cordova apps
- cordova my height body got shrink after keyboard pop up
- Unable to do payment in angular cordova app from android device
- SAPUI5 Bundled app w/ Cordova SSO SAP Backend
- TypeError: Spread syntac requires ...iterable[Symbol.iterator] to be a function
Related Questions in TELERIK-APPBUILDER
- Unable to sync nativescript v3.x project in Telerik
- window.cordova.plugins is always undefined in Ionic on Telerik AppBuilder
- How to run the AppBuilder to deploy a NativeScript application
- How to open a xcode framework file in telerik hybrid coredova application using telerik appbuilder
- How to use ionic 2 UI in telerik appbuilder
- Telerik Hybrid Mobile App Issue showing Japanese chars in View
- Telerik's AppBuilder not grouping files
- Telerik Appbuilder Temp .JS files cleanup
- How to access outer element inside Repeater?
- Nativescript with AppBuilder plugin update
- How to add npm modules in telerik nativescript app
- What is the difference between main-page.js and main-view.model.js when developing native apps through Telerik App Builder
- Telerik Native Transition href load slow
- Storing profile image in Base64 format in database for Hybrid Mobile Application
- NativeScript: How to deploy iOS app to physical device?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is an "image" data type, but according to MSDN you don't want to use it anymore as it's on the way out. Looks like you probably want to use varbinary(max).
https://msdn.microsoft.com/en-us/library/ms187993.aspx
Either that or store the images on your server and have a path saved in the database.