Skip to main content

Posts

spring boot sql server 2008 connection

first add the dependence in pom.xml file <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <scope>runtime</scope> </dependency> then we can add the below mention configuration in application.property file spring.datasource.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver spring.datasource.url =jdbc:sqlserver://localhost:1433;databaseName=pos spring.datasource.username = sa spring.datasource.password = sa spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.SQLServer2008Dialect then check the MS-SQL syntax for entity creation.

How to add native camera in ionic 4

This Ionic 4 tutorial is written for beginners also. So we can go step by step. And you can easily create this camera app. Step1: Create a new Ionic 4 project.  ionic start myapp blank Skip this step, if you already had Ionic 4 project. Step2: Install the camera plugin using the below command. cd myapp ionic cordova plugin add cordova-plugin-camera npm install @ionic-native/camera Step3: Import the plugin to the app.module.ts file and include the plugin in the providers. import { Camera , CameraOptions } from '@ionic-native/camera/ngx' ; Step4:   Import the camera plugin to home.ts file and create an object reference using the constructor. import { Camera , CameraOptions } from '@ionic-native/camera/ngx' ; export class HomePage { constructor ( private camera : Camera ) { } } Step5. Create a function to capture the photo. image : any = '' openCam ( ) { const options : CameraOptions = { quality :...

UTF-8 Dingbats

Char Dec Hex Entity Name ✁ 9985 2701 UPPER BLADE SCISSORS Try it ✂ 9986 2702 BLACK SCISSORS Try it ✃ 9987 2703 LOWER BLADE SCISSORS Try it ✄ 9988 2704 WHITE SCISSORS Try it ✅ 9989 2705 WHITE HEAVY CHECK MARK Try it ✆ 9990 2706 TELEPHONE LOCATION SIGN Try it ✇ 9991 2707 TAPE DRIVE Try it ✈ 9992 2708 AIRPLANE Try it ✉ 9993 2709 ENVELOPE Try it ✊ 9994 270A RAISED FIST Try it ✋ 9995 270B RAISED HAND Try it ✌ 9996 270C VICTORY HAND Try it ✍ 9997 270D WRITING HAND Try it ✎ 9998 270E LOWER RIGHT PENCIL Try it ✏ 9999 270F PENCIL Try it ✐ 10000 2710 UPPER RIGHT PENCIL Try it ✑ 10001 2711 WHITE NIB Try it ✒ 10002 2712 BLACK NIB Try it ✓ 10003 2713 CHECK MARK Try it ✔ 10004 2714 HEAVY CHECK MARK Try it ✕ 10005 2715 MULTIPLICATION X Try it ✖ 10006 2716 HEAVY MULTIPLICATION X Try it ✗ 10007 2717 BALLOT X Try it ✘ 10008 2718 HEAVY BALLOT X Try it ✙ 10009 2719 OUTLINED GREEK CROSS Try it ✚ 10010 271A HEAVY GREEK CROSS Try it ✛ 10011 271B OPEN CENTRE CROSS Try it ...