unity3d and php background simple interaction
Environmental Science:
Unity2017.3.0f3
Mysql5.7.20
Wampserver64
Create a new folder named unity in the www directory of Wampserver64.
1. unity3d requests php by get
1. Code on unity side
using UnityEngine;
using System.Collections;
public class phpUnity1 : MonoBehaviour
{
private string url = "http://localhost/unity/phpunity1.ph ...
Posted by subesc on Fri, 01 May 2020 17:04:34 -0700
Let hql support bitwise and operation
Absrtact: at present, hibernate does not support bitwise and operation, and recent projects need such operation again. Fortunately, hibernate provides related extension functions and can realize relevant operation by itself
1, Background
In the work, MySQL is used as the database, java is used as the language of the p ...
Posted by goldages05 on Fri, 01 May 2020 13:39:48 -0700
Using Tencent location service for mobile location
1. First, write a tool class to locate the function in common.js
common.js:
//Location service function entry
function getLocationInfo() {
if (localStorageUtils.acquireLocationInfo() == null ||localStorageUtils.acquireLocationInfo().curLongitude == null || localStorageUtils.acquireLocationInfo().curLatitude == null) {
getCurrentL ...
Posted by bradles on Fri, 01 May 2020 13:19:07 -0700
Enable remote access for mysql under Ubuntu
1. Log in with root
admin@lnxServer:~$ mysql -uroot -p123456
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 154
Server version: 5.6.19-0ubuntu0.14.04.1 (Ubuntu)
Copyright (c) 2000, 2014, Oracle and/or i ...
Posted by Shygirl on Fri, 01 May 2020 01:25:14 -0700
mysql service started but was not found in the process
CentOS 6.5, MySQL multiple instances (in fact, the same principle applies to a single instance)
1, Problem description
[root@www ~]# /data/3308/mysql start
Starting MySQL...
[root@www ~]# ps -A|grep mysql
[root@www ~]#
Start mysql database, and there is no result by checking the process.
2, Problem solving
Check the mysql error log. Th ...
Posted by tmk4php on Thu, 30 Apr 2020 15:28:40 -0700
Simple application of Oracle trigger and MySQL trigger
Oracle update trigger
Go straight one without more words
DROP TRIGGER kfzt_afterupdate_dlzt;
create or replace trigger kfzt_afterupdate_dlzt AFTER UPDATE ON jg_kfzt FOR EACH ROW
BEGIN
-- The update timeout is equal to the heartbeat time plus30Minute;Online time equals heartbeat time minus minutes of login time;
...
Posted by sandingmachine on Thu, 30 Apr 2020 15:25:17 -0700
To write JAVA to Xiaobai to link MySQL database (JDBC):
As a review and summary note, I have listed several jdbc steps, followed by a simple example, in which the try block is handled by the reader
/* *1. Download the driver package: com.mysql.jdbc.Driver. There are a lot of download resources on the Internet. You can find duniang yourself, which will not be provided here; * *2. Import the drive ...
Posted by tomas.srna on Thu, 30 Apr 2020 14:14:05 -0700
To add a database to a Java project
1. Add code to create database (similar to SQL statement)
Add init schema.sql database syntax creation file to test resource file
2. Adding database in POM file depends on MySQL connector Java and mybatis spring boot starter
<!--Add database dependency-->
<dependency>
<groupId>mysql</groupId> ...
Posted by sergio-pro on Thu, 30 Apr 2020 10:00:21 -0700
. NET using DAO.NET entity class model to operate database
1, New project
Open vs2017 and create a new project named orm1
2, New database
Open SqlServer database, create new database orm1, and create new table student.
3, New ADO.NET entity data model
Click new connection here to create a new database connection. In fact, the server name input. Represents the local server, and the defa ...
Posted by blmg911 on Thu, 30 Apr 2020 09:35:34 -0700
The detailed steps of java connecting mysql database
The detailed steps of java connecting mysql database
Connection Description:
a. The driver of mysql connection
b. mysql database installation
c,eclipse
e. Whether the database service is open (control panel - management tool - Service - find the corresponding service of mysql)
f. Create a database
1. Create a new java project and t ...
Posted by dsjoes on Thu, 30 Apr 2020 07:09:14 -0700